PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Alternative, wenn IN-Klausel eingegeben wird VIELE Werte (postgreSQL)

Eine Möglichkeit besteht darin, dies mit values zu verbinden Klausel

with parms (tag) as (
  values ('tag1'), ('tag2'), ('tag3')
)
select t.*
from the_table t
  join params p on p.tag = t.tag;