Although CREATE TABLE AS... SELECT does exist in PDW, such syntax does not exist in SQL Server. You can use the following query in SQL Server to create a blank table:
SELECT * INTO schema.newtable FROM schema.oldtable WHERE 1 = 0;
Note that this does not copy any indexes, constraints, triggers, or other data structures; instead, it constructs the same column structure, including any existing IDENTITY columns.
I hope this helps you.