sqlite3 使用记录

前端之家收集整理的这篇文章主要介绍了sqlite3 使用记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1:依据已有表创建一个新表 create table student6 as select * from student where 1=2; 如果省略where 1=2;则新表不仅拥有已有表的结构,也拥有了已有表的数据。 2:依据已有表插入数据 insert into student6 select * from student; 原文链接:https://www.f2er.com/sqlite/200786.html

猜你在找的Sqlite相关文章