SQLite
2021-12-07 本文已影响0人
无量儿
1、
UPDATE table_name
SET column1 = value1, column2 = value2...., columnN = valueN
WHERE [condition];
2、查看表结构
https://www.cnblogs.com/pugang/p/13985004.html
select * from sqlite_master where type="table" and name="emperors";