Hey there,
I'll try to make this easy to understand cause apparently I'm a moron. I have a table that has two columns. Column 1 is UID and column 2 is Attribute. Lets say I have 10 records for 5 different UIDs. Some of the users have more than one record meaning they have more than one attribute. (so far, so good)
I want to write a query that will show me only the users who are both tall and have blonde hair for instance. Eventually I'll need to match more than 2 attributes, but ill take what i can get for now.
I know how to query people who are tall or people who have blonde hair. I've been using:
... WHERE Attribute IN ("tall","blonde")
Any ideas?
Thanks for your time,
Ward
I'll try to make this easy to understand cause apparently I'm a moron. I have a table that has two columns. Column 1 is UID and column 2 is Attribute. Lets say I have 10 records for 5 different UIDs. Some of the users have more than one record meaning they have more than one attribute. (so far, so good)
I want to write a query that will show me only the users who are both tall and have blonde hair for instance. Eventually I'll need to match more than 2 attributes, but ill take what i can get for now.
I know how to query people who are tall or people who have blonde hair. I've been using:
... WHERE Attribute IN ("tall","blonde")
Any ideas?
Thanks for your time,
Ward