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,这是要目标表已经存在的情况下才可以的吧?