I have a list of staff members (about 80 in total)
Each staff member is assigned to a state (california, texas etc) - via a category
Each staff member has an area of expertise (property, manufacturing etc) - via input of a custom field
I need to be able to create a link that when clicked on returns only staff of a specific state and expertise.
Eg. John Smith - Texas, manufacturing
I assume the only way to do this is with an SQL query. Something like
SELECT Person WHERE STATE=Texas and CUSTOM_FIELD_NAME=manufacturingIs anyone able to help me construct such a query? Or point me in the right direction of another method to get this done?