i have 4 tables.. T1, T2, T3, T4..
these tables have the same structure and they store the
information entered in different years..
T1 stored 2002, T2 stored 2003, T3 stored 2004 and T4 stored
2005..
i want to copy contents in T1 to T2, T2 to T3, T3 to T4 and
T4 to T1..
how do i do that? Temp tables cannot be used..
Answer Posted / gaurav
dear u can do like
insert into t2 select * from t1
insert into t3 select * from t2
.
.
.
.
so on
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What are the different sql server versions?
Tell me what is a linked server?
What is the difference between mysql and mysqli?
How do I setup a sql server database?
What is sql server schema compare? How we can compare two database schemas?
Name some of the open source software that you can use in alternative to SSR?
Why is sql server log file full?
What is the data tier application?
What are the properties of the transaction?
What is filter index?
How to execute function in stored procedure sql server?
How do I uninstall sql server 2014?
What happens if you insert a duplicate key for the primary key column in ms sql server?
What is failover clustering overview?
what is the difference between delete table and truncate table commands? : Sql server database administration