mam stół z 4 kolumn:Sprawdź, czy wszystkie trzy kolumny są albo nie null lub wartość null
create table dbo.Table (
Id int not null,
A int null,
B int null,
C nvarchar (4000) null
)
Jak mogę się upewnić, że A
, B
i C
są trzy null
lub wszystkie trzy not null
?