MS Access excluding specific criteria -


I tried "no", "do not like", and & lt;> and to filter some numbers in MS Access Am I trying to help anyone?

You can use & lt;> if you leave only one number, such as

  Select yourFieldName1, yourFieldName2 from yourTableName where yourNumberField & lt; & Gt; 500;  

If you want a category of numbers, you can use it,

  SELECT yourFieldName1, yourFieldName2 from yourTableNameWHERE ((yourNumberField & lt) ;> 1) or (YourNumberField & lt;> 2) or (yourNumberField & lt;> 3) or (yourNumberField & lt;> 4) or (yourNumberField & lt;> 500) ); I will also use,  
  select yourFieldName1, yourTableName from yourFieldName2 where not in yourNumberField (1, 2, 3, 4, 500);  

Comments

Popular posts from this blog

winforms - C# Form - Property Change -

javascript - amcharts makechart not working -

java - Algorithm negotiation fail SSH in Jenkins -