Hey all,
I'm trying to use SELECT INTO to copy a table from one database to another. http://www.w3schools.com/sql/sql_select_into.asp tells me that I can do this using the IN keyword. I'm using MSSQL Server and the following statement:
I'm getting an "Incorrect syntax near the keyword 'IN'." error.
Any thoughts?
I'm trying to use SELECT INTO to copy a table from one database to another. http://www.w3schools.com/sql/sql_select_into.asp tells me that I can do this using the IN keyword. I'm using MSSQL Server and the following statement:
Code:
SELECT RMC_Attempt.* INTO RMC_Attempt IN 'Test2' FROM RMC_Attempt
Any thoughts?
Comment