Create Table from View

后端 未结 9 2156
一整个雨季
一整个雨季 2020-12-12 19:08

I have a view that I want to create a table from in SQL Enterprise Manager, but I always get an error when I run this query:

CREATE TABLE A 
AS
(SELECT top 1         


        
9条回答
  •  长情又很酷
    2020-12-12 19:30

    If you just want to snag the schema and make an empty table out of it, use a false predicate, like so:

    SELECT * INTO myNewTable FROM myView WHERE 1=2
    

提交回复
热议问题