sql - What is the opposite of the in function at mysql? -
with in function can found row specified values:
select * table1 value in (1,3,4);
but how select values isn't 1,3,4:
select * table1 value != (1,3,4);
i think looking not in
:
select * table1 value not in (1,3,4);
Comments
Post a Comment