Why do I get an error when I execute the below T-SQL query?
CREATE TABLE TblCustomer
AS (SELECT * FROM Customer);
Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'AS'
I am trying to create Tblcustomer table same as Customer table