IS
Size: a a a
IS
MR
Дt
Дt
Дt
Дt
AS
K
K
Дt
Дt
Дt
К
use tempdb;
GO
create table test_null_unique(id int NULL UNIQUE);
insert into test_null_unique
select 1
UNION
select 2
UNION
select NULL
select * from test_null_unique
-- duplicate NULL is not allowed
insert into test_null_unique
select NULL
К
АS
К
NP