时间:2021-07-01 10:21:17 帮助过:3人阅读
and use
INSERT INTO people (first_name, last_name) VALUES ("John", "Smith");
instead. The first version is very fragile — if you ever add, move, or delete columns in your table definition the INSERT will either fail or produce incorrect data (with the values in the wrong columns).
https://www.sqlite.org/autoinc.html
sqlite中的自增主键
标签: