I am trying to pull a query for a project that I am working on. I will make this as simple as possible. Lets say that I have 10 different certifications. The individuals can obtain different certifications.
I want to know how to write an expression that will give me 1, 3, and 8 list of individuals who have all three of those certifications only. I have tried several queries but so far no luck.
How is the data stored, and what data do you store to indicate that a certification has been obtained?
If you have stored the certifications as Yes/No in 10 separate columns with Cert1, Cert2, Cert3.. being the field names, then the SQL would be
SELECT StudentNo. SName, etc
FROM tblCertification
WHERE ((Cert1=True) And (Cert3=True) And (Cert8=True) And (Cert2=False) And (Cert4=False) And (Cert5=False) And (Cert6=False) And (Cert7=False) And (Cert9=False) And (Cert10=False))
If the table design is different then let us know through Further Details