zombie110year / blog-source

https://blog.zombie110year.top
2 stars 1 forks source link

SQLite3 | ZomHub #38

Open zombie110year opened 5 years ago

zombie110year commented 5 years ago

https://zombie110year.top/2019/SQLite/

本文记录了 SQLite3 的命令行工具用法, 以及一些常用的 SQL 语句. 速查表表的建立与删除: 12345CREATE TABLE / 表名 /( / 列定义 /);DROP TABLE / 表名 /; 数据的增查删改: 1234567891011INSERT INTO // (//)VALUES(//),(/ 多个值 /);SELECT