I have a table in mysql of hashtags:
strHash | nPersonID
-------------------------
#dogowner | 1
#catowner | 1
#dogowner | 2
#mouseowner | 3
#fish | 3
#vancouver | 1
#vancouver | 3
I'd like to query the table with a MySQL
statement and say, I want nPersonID = 1
, return a result of all people that share one ore more strHash
values.
This will allow me to show similar people when viewing a specific person. (or, people who share similar hash tags - some but not necessarily all)