如果是想两个字段组成一个复合主键的话可以如下。
SQL code

sqlite> create table t2 ( ...> id1 int , ...> id2 int, ...> col varchar(20), ...> constraint pk_t2 primary key (id1,id2) ...> ); sqlite>
 
如果是双主键如下:
[html] view plaincopy
 
  1. sqlite> create table t1 (  
  2.    ...>         id      int primary key,  
  3.    ...>         col     varchar(20)  
  4.    ...> );  
  5. sqlite> create unique index uk_t1 on t1 (col);  

相关文章:

  • 2022-12-23
  • 2021-07-30
  • 2021-12-02
  • 2022-03-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-11
  • 2021-09-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-07
相关资源
相似解决方案