如何给Sqlite添加复合主键

如果是想两个字段组成一个复合主键的话可以如下。
SQL code
   
   
sqlite > create table t2 ( ... > id1 int ,... > id2 > col varchar ( 20 ),255)">constraint pk_t2 primary key (id1,id2) ... > ); sqlite >
如果是双主键如下:
sqlite> create table t1 (
   ...>         id      int primary key,...>         col     varchar(20)
   ...> );
sqlite> create unique index uk_t1 on t1 (col);

相关文章

SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能