Hi,
is there a way to query LDAP with a syntax similar to the "IN" statement in SQL? I mean by providing a list of value instead of repeating the field name again and again.
Let me explain:)
I have a query similar to:
(&(name=joe)(name=bill)(name=mark)(name=john)(name=rob))
Is there a way to shrink this query to get something like this:
(name=joe,bill,mark,john,rob)
Thanks