Sign In
|
Register
Please Log In to save to favorites
TAGs
copy, table, data, mssql
Versions
Versions
21/01/2010 17:13:23
Copy from one table to another
by
duniyadnd
Copy data from one table to another
1.
INSERT INTO table1 (col1, col2, col3)
2.
SELECT colA , colB, colC FROM table2 WHERE
3.
colC > 5
Comments
Sign in to give your comments.