Is it possible to achieve something like this in sql?
ID!= {2,3}
where ID is a column. Or I have to use multiple OR statements?
Is it possible to achieve something like this in sql?
ID!= {2,3}
where ID is a column. Or I have to use multiple OR statements?
You have to try With
Or
yes,
not in
:You can read more here.