How to a Query to copy data from on table to another table.
Answer Posted / gali kondareddy
INSERT INTO TABLE_2 SELECT * FROM TABLE_1
OR
INSERT INTO TABLE_2 SELECT * FROM TABLE_1 WHERE 1=1
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is a correlated sub-query? : Sql server database administration
How to create median function?
Explain indexes disadvantages?
What does normalization do to data?
what is denormalization? : Sql server database administration
Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?
Why do we use sql limitations? Which constraints can we use while making a database in sql?
How to provide default values to stored procedure parameters?
What are the character string functions supported by sql server 2005?
Can we use max in where clause?
What are pages and extents? : SQL Server Architecture
Is a null value equal to anything? Can a space in a column be considered a null value? Why or why not?
How to delete an existing row with delete statements in ms sql server?
Do you know the isolation level that sql server support?
What is mean by candidate key?