Order by、where区にcase文

Order byにCase
https://style.potepan.com/articles/14920.html
WhereにCase
https://style.potepan.com/articles/23548.html
検索値に値があったら取得
https://qiita.com/nogitsune413/items/9c939f50714e430461c8
table2のレコード数が100以下ならtable1のレコード全件表示、
そうでなければ何も出力しない

select
*
from
table1
where
CASE
WHEN (select count(id) as count from table2) <= 100 THEN
id
END = id
タイトルとURLをコピーしました