问题描述
使用以下语法从 sql Server 2008 中的旧表创建新表
Select * into new_table from old_table
解决方法
我想从 SQL Server 中的选择查询结果中创建一个表,我试过了
create table temp AS select.....
但我有一个错误
关键字“AS”附近的语法不正确
使用以下语法从 sql Server 2008 中的旧表创建新表
Select * into new_table from old_table
我想从 SQL Server 中的选择查询结果中创建一个表,我试过了
create table temp AS select.....
但我有一个错误
关键字“AS”附近的语法不正确