I know its simple but I am not able to understand this error I got this error when I tried creating an exesting table which has huge data.
To make is easy i tried using sample table
I created a sample table
create table temp1 (
ser_no integer );
when I tried creating another table using below statement
create table temp2 as (select * from temp1 );
I am getting below error
"Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'as'"
Do you think any grant issues.