【PostgreSQL】比較演算子の紹介
比較演算子の紹介
よく使う比較演算子を紹介します。
-- イコール
if (a = b) then
-- ノットイコール
if (a != c) then
-- 大なり
if (a > b) then
-- 小なり
if (a < c) then
-- 大なりイコール
if (a >= b) then
-- 小なりイコール
if (a <= c) then
-- 条件 かつ 条件の書き方
if (a > b) and (a < c) then
-- 条件 または 条件の書き方
if (a > b) or (a < c) then
PostgreSQLの構文まとめを書いています