如何在每个SQLite行中插入一个唯一的ID?

前端之家收集整理的这篇文章主要介绍了如何在每个SQLite行中插入一个唯一的ID?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下sqlite代码。如何在每一行中插入自动生成的唯一ID?
tx.executesql('DROP TABLE IF EXISTS ENTRIES');
    tx.executesql('CREATE TABLE IF NOT EXISTS ENTRIES (id unique,data)');

    tx.executesql('INSERT INTO ENTRIES (id,data) VALUES (1,"First row")');
    tx.executesql('INSERT INTO ENTRIES (id,data) VALUES (2,"Second row")');
您可以将id定义为 auto increment column
create table entries (id integer primary key autoincrement,data)

正如MichaelDorner所说,SQLite documentation表示一个整数主键也是一样的,稍微快一点。该类型的列是rowid的别名,其中behaves like an autoincrement column

create table entries (id integer primary key,data)

这种行为是隐含的,可以捕捉无经验的sqlite开发人员。

原文链接:https://www.f2er.com/sqlite/197954.html

猜你在找的Sqlite相关文章