Skip to content

Instantly share code, notes, and snippets.

@iisaka51
Created October 17, 2023 23:33
Show Gist options
  • Save iisaka51/4b3fca55ece50de2b380d057edd343bd to your computer and use it in GitHub Desktop.
Save iisaka51/4b3fca55ece50de2b380d057edd343bd to your computer and use it in GitHub Desktop.
演算子 説明
gt, > より大きい
lt, < より小さい
gte, >= 以上
lte, <= 以下
!=, <>, not 比較した値が異なる
in 与えたシーケンスに含まれる
notin 与えたシーケンスに含まれない
like, ilike 文字列検索、 ilike は大文字小文字を区別しない。ワイルドカードは%
notlike パターンに合致する文字列が存在しないかチェック
between, .. 値が与えたタプルの間の値
startswith 与えた文字列で始まっている文字列
endswith 与えた文字列で終わっている文字列
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment