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..

Answers were Sorted based on User's Feedback



i have 4 tables.. T1, T2, T3, T4.. these tables have the same structure and they store the informa..

Answer / deepak

Just copy all data in T1 from T4.

insert into T1 (select * from T4)

Now do this assuming 'dateCol' contains the date:

delete from T4
insert into T4 (select * from T3)
delete from T3
insert into T3 (select * from T2)
delete from T2
insert into T2 (select * from T1 where year(dateCol) = 2002)
delete from T1 where year(dateCol) = 2002

This should move the data around without using temp table.

Is This Answer Correct ?    7 Yes 0 No

i have 4 tables.. T1, T2, T3, T4.. these tables have the same structure and they store the informa..

Answer / madhu sudhan g

Hiii

DELETE T1
OUTPUT DELETED.COLUMN1,DELETED.COLUMN2...
INTO T2
DELETE T2
OUTPUT DELETED.COLUMN1,DELETED.COLUMN2...
INTO T3
DELETE T3
OUTPUT DELETED.COLUMN1,DELETED.COLUMN2...
INTO T4

Is This Answer Correct ?    1 Yes 0 No

i have 4 tables.. T1, T2, T3, T4.. these tables have the same structure and they store the informa..

Answer / siva

insert into T1
select *from t2
union/union all (without duplicates/with duplicates )
select *from t3

union/union all
select *from t4
.

Is This Answer Correct ?    0 Yes 0 No

i have 4 tables.. T1, T2, T3, T4.. these tables have the same structure and they store the informa..

Answer / 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

More SQL Server Interview Questions

Explain few examples of stored procedure over triggers?

0 Answers   ADITI,


What do you understand by recursive stored procedures?

0 Answers  


What is a function? Give some example?

3 Answers  


What are the types of model in sql server and explain

2 Answers   TCS,


Can you give me some DBCC command options?(Database consistency check) - DBCC CHECKDB - Ensures that tables in the db and the indexes are correctly linked.and DBCC CHECKALLOC - To check that all pages in a db are correctly allocated. DBCC SQLPERF - It gives report on current usage of transaction log in percentage. DBCC CHECKFILEGROUP - Checks all tables file group for any damage.

0 Answers   iSoft,






What are the different types of upgrades that can be performed in sql server?

0 Answers  


Does sql server 2000 full-text search support clustering?

0 Answers  


Mention a few common trace flags used with sql server?

0 Answers  


What is compound operators?

0 Answers  


What is a fill factor?

0 Answers  


Explain SELF JOIN ?

3 Answers   ADP,


One table Test with single column. These are the values in the table a b c d e f g h I need a query (without using any variable) with output as - a b c d e f g h

1 Answers  


Categories