sql - To display all records of table? -
to display records of table1 except containing 2 b containing 5
table1 ------ b - 8 5 2 9 null 4 2 5
select * table1 not in 2 , b not in 5;
it doesn't work ,it display 0 rows selected
Comments
Post a Comment