sqlite3使用简单介绍
sqlite3 config.db
1. .help
2. .database
3. .tables
4. .show
5. .dump 输出表操作命令
6. .schema 输出表结构
sql语句
1. insert INTO Devices VALUES ("EVCTBDRYddN6PWZ71",3);
2. delete from Devices where `uid`= 'Devices_UIDa';
原文链接:https://www.f2er.com/sqlite/201006.html