這很奇怪或者我是新的?下面是一個簡單的創建表的選擇導致在SQL Server錯誤2008在SQL Server中創建選擇導致錯誤的表
CREATE TABLE [SalesOrderHeader2]
AS
(SELECT *
FROM [AW].[sales].SalesOrderHeader)
錯誤:
Msg 156, Level 15, State 1, Line 2
Incorrect syntax near the keyword 'as'.
在Oracle中沒有錯誤:
create table abc AS
select * from abc2
我不斷接受減點爲什麼? –
我想創建新表,你沒有得到我的問題。 –
yes agree with you Anoop –