I have a table in which I have made two columns as composite PRIMARY KEY. Now I have a confusion.
Let's say I have a table as following:
ColA ColB
X NULL
X NULL
Both the rows "X NULL" and "X NULL" are combined PRIMARY KEY.
So, is this insertion possible? Because the NULL value differs and accordingly both the rows should represent a new combination of data.
Please clarify.