SQLite Unique Key with a combination of two columns

前端 未结 1 858
有刺的猬
有刺的猬 2020-12-30 11:17

I\'m trying to make sure when I run the following query only the first INSERT INTO will work.. I know I have to make slot UNIQUE

相关标签:
1条回答
  • 2020-12-30 11:53

    Add to your ddl

    create table ... ( ...
    ...,
    unique(slot, player));
    
    0 讨论(0)
提交回复
热议问题