It's okay, not many people do.
I was just wondering whether surname=bloggs could be used as part of the criteria in the query you gave previously. The query would result in TRUE if bloggs was a surname in any one of the results (not necessarily all).
This is valid:
Code:
person_id surname console game
====================================
1 jones xbox360 cod4
2 bloggs ps3 cod4
3 smith wii bowling
4 another xbox360 cod4
This is invalid using smith instead of bloggs:
Code:
person_id surname console game
====================================
1 jones xbox360 cod4
2 bloggs ps3 cod4
3 smith wii bowling
4 another xbox360 cod4
Bookmarks