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

python - Referencing Data From a 2D Histogram -

c# - Derived UserControl layout resets after build -

php - MySQL LIMIT results with INNER JOIN with more than 2 tables -