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
Explain transaction isolation levels in sql server?
What are the basic features of a trigger in ms sql server?
What is a subquery in a select query statement in ms sql server?
What are the different kinds of ssrs reports?
Explain what stored procedure sp_replcounters is used for? : sql server replication
What does top operator do?
Explain the steps to use transact-sql cursor?
What is sql injection? How to protect against sql injection attack?
How to list all columns in a table using odbc_columns()?
Why we should not use triggers?
How do you know if sql server is running on your local system?
What is difference between commit and rollback when used in transactions?
What is policy management?
Explain triggers?
Define the one-to-one relationship while designing tables.