Is it possible to use SQL-LDAP to do something of a relational query? My end goal is to query a group for all members, and then use those values to query an attribute from the user. The best example I can provide would be:
SELECT $member from "cn=GroupA,ou=groups,o=directory" WHERE $employeeID IS NULL
The query above only searches the group, but what I need is take the members that it retrieves & then query the user container to check if that user has the employeeID attribute populated or not.
Any assistance would be appreciated!
JK