I'm trying to insert in the following table ABC(user text, num int), Where user is primary key two tuples:
(aaa, 1)
(aaa, 2)
What is the result of this?
|
|
|
The first insert will work (if there is not already a row with that primary key). And the second insert will fail : duplicate primary key. |
|||
|
|