If I run the following, what will happen?
CREATE TABLE myTable (someField int, UNIQUE (someField)); INSERT INTO myTable VALUES (null); INSERT INTO myTable VALUES (NULL);
If I run the following, what will happen?
CREATE TABLE myTable (someField int, UNIQUE (someField)); INSERT INTO myTable VALUES (null); INSERT INTO myTable VALUES (NULL);
Leave a Reply