0

In PostgreSQL IN can be used to match any value in a list. What if I need to match all values in a list? Is there a way to do this in PostgreSQL?

user840930
  • 5,214
  • 21
  • 65
  • 94

1 Answers1

-2

try = ALL (subquery) instead of IN (see manual)

Edouard
  • 6,577
  • 1
  • 9
  • 20