SQlite:select into?

前端之家收集整理的这篇文章主要介绍了SQlite:select into?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不知道如果我可以使用select into从另一个表导入数据,像这样:
select * into
  bookmark1 
from bookmark;

是真的sqlite不支持这种语法吗?有没有其他替代品?

您可以尝试此查询
insert into bookmark1 select * from bookmark
原文链接:https://www.f2er.com/sqlite/198334.html

猜你在找的Sqlite相关文章