In Oracle, Comparison operators are used with the where clause. The following are the operators that can be used:-
Comparison operator | Description |
---|---|
= | Equal |
<> | Not Equal |
!= | Not equal |
> | Greater than |
>= | Greater than or equal |
< | Less than |
<= | Less than or equal |
In Oracle, equal (=) operator is used for checking equality.
Query: select * from table1 where age = 26
In Oracle, not equal operator is used for checking inequality. != or <> can be used for checking inequality in a query.
Query: select * from table1 where age <> 26
Query: select * from table1 where age != 26
In Oracle, greater than (>) operator is used for getting greater than value of the given expression.
Query: select * from table1 where age > 26
In Oracle, greater than or equal (>=) operator is used for getting greater than or equal to value of the given expression.
Query: select * from table1 where age > = 26
In Oracle, less than (<) operator is used for getting less than value of the given expression.
Query: select * from table1 where age < 26
In Oracle, less than or equal (<=) operator is used for getting less than or equal to value of the given expression.
Query: select * from table1 where age <= 26