SQLite 多列主键

问题描述 投票:0回答:9

在 SQLite 中指定多于 1 列的主键的语法是什么?

sqlite primary-key ddl composite-primary-key
9个回答
965
投票

根据文档,它是

CREATE TABLE something (
  column1, 
  column2, 
  column3, 
  PRIMARY KEY (column1, column2)
);

185
投票
CREATE TABLE something (
  column1 INTEGER NOT NULL,
  column2 INTEGER NOT NULL,
  value,
  PRIMARY KEY ( column1, column2)
);

52
投票

是的。但请记住,这样的主键允许在两列中多次出现

NULL
值。

创建一个表,如下所示:

    sqlite> CREATE TABLE something (
column1, column2, value, PRIMARY KEY (column1, column2));

现在可以在没有任何警告的情况下运行:

sqlite> insert into something (value) VALUES ('bla-bla');
sqlite> insert into something (value) VALUES ('bla-bla');
sqlite> select * from something;
NULL|NULL|bla-bla
NULL|NULL|bla-bla

44
投票

基本:

CREATE TABLE table1 (
    columnA INTEGER NOT NULL,
    columnB INTEGER NOT NULL,
    PRIMARY KEY (columnA, columnB)
);

如果您的列是其他表的外键(常见情况):

CREATE TABLE table1 (
    table2_id INTEGER NOT NULL,
    table3_id INTEGER NOT NULL,
    FOREIGN KEY (table2_id) REFERENCES table2(id),
    FOREIGN KEY (table3_id) REFERENCES table3(id),
    PRIMARY KEY (table2_id, table3_id)
);

CREATE TABLE table2 (
    id INTEGER NOT NULL,
    PRIMARY KEY id
);

CREATE TABLE table3 (
    id INTEGER NOT NULL,
    PRIMARY KEY id
);

17
投票

主键字段应声明为非空(这是非标准的定义 主键的特点是它必须是唯一的且不为空)。但下面是一个很好的做法 任何 DBMS 中的所有多列主键。

create table foo
(
  fooint integer not null
  ,foobar string not null
  ,fooval real
  ,primary key (fooint, foobar)
)
;

14
投票

从 SQLite 3.8.2 版本开始,显式 NOT NULL 规范的替代方案是“WITHOUT ROWID”规范:[1]

NOT NULL is enforced on every column of the PRIMARY KEY
in a WITHOUT ROWID table.

“WITHOUT ROWID”表具有潜在的效率优势,因此可以考虑的一个不太冗长的替代方案是:

CREATE TABLE t (
  c1, 
  c2, 
  c3, 
  PRIMARY KEY (c1, c2)
 ) WITHOUT ROWID;

例如,在 sqlite3 提示符下:


  sqlite> insert into t values(1,null,3);
  Error: NOT NULL constraint failed: t.c2


6
投票

以下代码在 SQLite 中创建一个以 2 列作为主键的表。

解决方案:

CREATE TABLE IF NOT EXISTS users (
    id TEXT NOT NULL, 
    name TEXT NOT NULL, 
    pet_name TEXT, 
    PRIMARY KEY (id, name)
)

3
投票

另一种方式,您还可以将两列主键

unique
自增
primary
。就像这样:https://stackoverflow.com/a/6157337


2
投票

PRIMARY KEY (id, name)
对我不起作用。相反,添加约束就完成了这项工作。

CREATE TABLE IF NOT EXISTS customer (
    id INTEGER, name TEXT,
    user INTEGER,
    CONSTRAINT PK_CUSTOMER PRIMARY KEY (user, id)
)
© www.soinside.com 2019 - 2024. All rights reserved.