当前位置: 代码迷 >> SQL >> 【SQLite】select into 话语
  详细解决方案

【SQLite】select into 话语

热度:161   发布时间:2016-05-05 09:41:10.0
【SQLite】select into 语句

sqlite不支持类似sqlserver中的select into 语法

在SQL Server中,我们要将一个表中的数据复制到一个新表中,可以这样写:

SELECT * INTO newtable FROM oldtable

SQLite不支持以上语法,替代的语句是这样:

CREATE TABLE newtable AS SELECT * FROM oldtable

 

1楼Barney Ross
我记得可以这样写,Insert into old_table [(column)] select column from new_table where...
Re: 房子斯特
@Barney Ross,这是要目标表已经存在的情况下才可以的吧?
  相关解决方案