【PostgreSQL】比較演算子の紹介

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の構文まとめを書いています

「基本構文・こんな時どう書くんだっけ?」のまとめ