How To Copy Data From One Table to Another Table Having Data

If i have two table T1 having data of column C1,C2,C3 and C4 and T2 having data of column C5,C6,C7 and C8,How to copy Data of T2 to T1 or T1 to T2

Showing Answers 1 - 9 of 9 Answers

Aakash

  • Mar 22nd, 2015
 

INSERT INTO T1
(
SELECT
C5,
C6,
C7,
C8
FROM T2)

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions