我有一个有 3 列的表。没有一列是唯一键。
我只想在每列中不存在具有完全相同值的行时才运行插入。
given the following table:
a b c
----------
1 3 5
7 1 3
9 49 4
a=3 b=4 c=3 should insert
a=7 b=1 c=3 should not insert (a row with these exact values exists)
到目前为止我发现的解决方案需要一个唯一的主键。