I have a varchar field in PostgreSQL, let's say the column is 'address' and list is ['foo', 'bar', 'baz']. I want to find any row in my table that has any of those words.
How do I write it using BoolenBuilder to create predicate? or by any means
final var builder = new BooleanBuilder();
builder.and(qAccount.accAddress.eqAny(accountAddress.getAddressLine()));
Predicate predicate = builder.getValue();
** here ArrayPath<String[], String> accAddress1 = qAccount.accAddress;