尝试从 Select 创建表 - SQL Server 2008 抛出错误

我正在尝试使用内部选择语句创建一个表...

Hi I am trying to create a table using inner select statement...

例如:

CREATE TABLE JmxMonSer AS (SELECT * FROM services WHERE monitoring_enabled = 1);

但不断出错:

关键字AS"附近的语法不正确,严重性为 15

请指教

推荐答案

怎么样:

SELECT * into JmxMonSer FROM services WHERE monitoring_enabled=1

如果表已经存在(并且列类型和顺序排列),您可以使用:

If the table already exists (and the columns types and ordering line up), you can use:

INSERT INTO JmxMonSer SELECT * FROM services WHERE monitoring_enabled=1

相关文章