You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple set of functions to help with the sometimes awkward syntax of PostgreSQL operators. There are 3 functions that allow to test if elements of one array are included in another array.
selectTilda.In(ARRAY[1,2,3], ARRAY[2,3]); -- For INTEGER and BIGINTselectTilda.In(ARRAY['a','b','c'], ARRAY['a','b']); -- For TEXT