我在一个表中有两个外键,一个主键。
Primary_key Name Foreignkey1 Foreignkey2
1 test1 2 1
2 test2 2 1 <--- how do i prevent this from entering
3 test3 2 2
无论是在java还是mysql中,我都将数据显示在jtable中
最佳答案
添加UNIQUE
约束
ALTER TABLE tableName ADD CONSTRAINT tb_uq UNIQUE (Foreignkey1, Foreignkey2)