sql IS NOT code example

Example 1: sql not equal

<>	Not equal. Note: In some versions of SQL this operator may be written as !=

Example sql query:

1) Selecting groceries where price is not 20
SELECT * FROM Grocery WHERE Price <> 20;

Example 2: sql or

Used alongside WHERE to include data when either condition is true.
Example: Returns users that live in either Sheffield or Manchester.
SELECT * FROM users
WHERE city = 'Sheffield' OR 'Manchester';

Example 3: sql not in

SELECT * FROM Customers
WHERE Country NOT IN ('Germany', 'France', 'UK');

Example 4: sql not in

SQL NOT IN operator is used to filter the result if the values that are mentioned as part of the IN operator is not satisfied. Let’s discuss in detail about SQL NOT IN operator.

Syntax:
SELECT Column(s) FROM table_name WHERE Column NOT IN (value1, value2... valueN);

Example 5: sql where a or b

-- example
SELECT Id, ProductName, UnitPrice, Package
  FROM Product
 WHERE ProductName LIKE 'Cha_' OR ProductName LIKE 'Chan_'

Example 6: sql and

/* AND is a operator that allows you to combine two conditions
Both conditions must be true for the row to b e included in the result set */
SELECT column_name(s)
FROM table_name
WHERE column_1 = value_1
AND column_2 = value_2;

Tags:

Sql Example