|
|
|
|
|
by magicalhippo
1445 days ago
|
|
Can you provide a complete working example? I'm just getting "incorrect syntax near !" with both mssql and sqlanywhere. create table #nulltest (a bit null);
insert into #nulltest(a) values (0),(1);
insert into #nulltest(a) values (null != null);
|
|