= Checks if the values of two operands are equal or not, if yes then condition becomes true. (a = b) is not true.
!= Checks if the values of two operands are equal or not, if values are not equal then condition becomes true. (a != b) is true.
<> Checks if the values of two operands are equal or not, if values are not equal then condition becomes true. (a <> b) is true.
> Checks if the value of left operand is greater than the value of right operand, if yes then condition becomes true. (a > b) is not true.
< Checks if the value of left operand is less than the value of right operand, if yes then condition becomes true. (a < b) is true.
>= Checks if the value of left operand is greater than or equal to the value of right operand, if yes then condition becomes true. (a >= b) is not true.
<= Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true. (a <= b) is true.
!< Checks if the value of left operand is not less than the value of right operand, if yes then condition becomes true. (a !< b) is false.
!> Checks if the value of left operand is not greater than the value of right operand, if yes then condition becomes true. (a !> b) is true.
SELECT first_name, country
FROM Customers
WHERE country IN ('USA', 'UK');
SELECT first_name, last_name
FROM Customers
WHERE country = 'USA' AND last_name = 'Doe';
SELECT FullName
FROM EmployeeDetails
WHERE FullName LIKE ‘__hn%’;
SELECT EmpId,
Salary+Variable as TotalSalary
FROM EmployeeSalary;
SELECT EmpId FROM EmployeeDetails
UNION
SELECT EmpId FROM EmployeeSalary;
(IN) operator in sql like "OR" operator
For example:
Select * From employees
Where department_id "IN" (60,90);