SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,629 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a table from a colleague. I want to create a table with the same structure as this one.
But I don't have a table creation statement, how do I do this?
Please suggest.
Hi @AA fate
Now I have a table.
You can use this.
select * into newtable from test where 1 = 2;
Output:
Best regards,
Percy Tang