Please Log In to save to favorites
TAGs
copy, table, data, mssql


Versions
Copy from one table to another
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