Is this syntax no longer valid?
i am pretty certain it works in oracle8i and upwards. It doesn't work in MSSQL.Code:CREATE TABLE MYTABLE AS SELECT * FROM ANOTHER_TABLE;
The syntax that works in MSSQL is
is there one more way to do this in SQL Server 2008?Code:SELECT * INTO MYTABLE from ANOTHER_TABLE




Reply With Quote