I have two table in the same database. They don't have the exact same column. Can I copy from one table to another table in the same database.
The basic syntax is INSERT INTO Table2 (Col1, Col2) SELECT ColA, ColB FROM Table1 If the data types are not identical, you may need to use CAST() around the columns in the SELECT part. Lookup CAST in Books Online for the complete details.