sqlserver查询并建立新表sql语句
时间: 2023-08-15 13:04:40 浏览: 95
Microsoft SQL Server 创建表sql语句
4星 · 用户满意度95%
要在SQL Server中查询并建立新表,你可以使用以下SQL语句:
```sql
SELECT column1, column2, ...
INTO new_table
FROM existing_table
WHERE condition;
```
在这个语句中,你需要将`column1, column2, ...`替换为你想要选择的列名,`new_table`替换为你想要创建的新表的名称,`existing_table`替换为你想要从中选择数据的现有表的名称,`condition`替换为你想要应用的筛选条件。
例如,如果你想要从名为`customers`的现有表中选择`customer_id`、`customer_name`和`customer_email`列,并将结果存储在名为`new_customers`的新表中,你可以使用以下SQL语句:
```sql
SELECT customer_id, customer_name, customer_email
INTO new_customers
FROM customers;
```
这将从`customers`表中选择指定的列,并将结果插入到名为`new_customers`的新表中。
阅读全文