logo

比較演算子

Oracle では、比較演算子は where 句とともに使用されます。使用できる演算子は次のとおりです。

Ubuntu の ipconfig
比較演算子 説明
= 等しい
等しくない
!= 等しくない
> より大きい
>= 以上
< 未満
<=< td> 以下

テーブル:

Oracle の比較演算子

例: 等号演算子

Oracle では、等価性のチェックに等号 (=) 演算子が使用されます。

クエリ: select * from table1 where age = 26

Oracle の比較演算子

例: 等しくない演算子

Oracle では、不等号をチェックするために不等号演算子が使用されます。 != または は、クエリ内の不等号をチェックするために使用できます。

クエリ: select * from table1 where 年齢 26

int の文字列
Oracle の比較演算子

クエリ: select * from table1 where age != 26

Oracle の比較演算子

例: 大なり演算子

Oracle では、大なり (>) 演算子は、指定された式の値より大きい値を取得するために使用されます。

クエリ: select * from table1 where age > 26

Oracle の比較演算子

例: 以上演算子

Oracle では、以上 (>=) 演算子は、指定された式の値以上を取得するために使用されます。

クエリ: select * from table1 where age > = 26

Oracle の比較演算子

例: 「より小さい」演算子

Oracle では、(<) operator is used for getting less than value of the given expression.< p>

クエリ: select * from table1 where age<26< p> Oracle の比較演算子

例: 以下演算子

Oracle では、以下 (<=) operator is used for getting less than or equal to value of the given expression.< p>

クエリ: select * from table1 where age<= 26< p> Oracle の比較演算子

スライスジャワ