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

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -