在关键字 'as' 附近有语法错误。
create table collection as select * from zsmk
服务器: 消息 156,级别 15,状态 1,行 1
在关键字 'as' 附近有语法错误。
语法没错 为啥报错?
------解决方案--------------------語法錯誤,
建表可以使用這個語句:
select *
into collection from zsmk
建視圖是:
create
view collection as select * from zsmk