摘要: https://blog.csdn.net/wang839305939/article/details/78713124/ 阅读全文
posted @ 2019-11-30 18:22 刘_love_田 阅读(1878) 评论(0) 推荐(0) 编辑
摘要: SQLite 的 INSERT INTO 语句用于向数据库的某个表中添加新的数据行。 基本语法:INSERT INTO TABLE_NAME VALUES (value1,value2,value3,...valueN); -- 插入时,所有字段都传值的时候 sqlite> insert into 阅读全文
posted @ 2019-11-30 16:54 刘_love_田 阅读(5837) 评论(0) 推荐(0) 编辑
摘要: 基本语法如下 sqlite> select * from tb_user; sqlite> select userid,username from tb_user; 格式化的查询输出 sqlite> .header on sqlite> .mode column sqlite> select * f 阅读全文
posted @ 2019-11-30 14:25 刘_love_田 阅读(4835) 评论(0) 推荐(0) 编辑