I am trying to create one new table with the selective columns from the existing table. I used the following query,
create table New
AS (select UnitID,Institution,State,MSA from Old);
But I am getting the error as,
Incorrect syntax near the keyword 'as'.
If I remove those ()-brackets it is saying ()-brackets are expected near AS.
Any suggestion would be helpful!