Hello,
I'm trying to join three tables with mysql and php. So far, I have this:
When I run the code, it only returns one result, instead of all results....any idea?
Thanks in advance
I'm trying to join three tables with mysql and php. So far, I have this:
Code:
select username,psummary
FROM subscribers join users_db
ON subscribers.uid = users_db.uid
join projects
ON users_db.uid = projects.uid
AND subscribers.sub_user='1'
When I run the code, it only returns one result, instead of all results....any idea?
Thanks in advance