I have the following join query for returning users to which a user subscribed. The users table consists of a user's data, and subscriptions table holds a user_id and and the id of the user she/he is subscribed to in the following column.
SELECT subscriptions.following, users.first_name, last_name
FROM (
subscriptions
)
JOIN users ON users.user_id = subscriptions.following
WHERE subscriptions.user_id = 62
ORDER BY subscribed DESC
LIMIT 0 , 30
I get the following table structure
+-----------+-------------+------------+
| following | first_name | last_name |
+-----------+-------------+------------+
| 11 | Dave | Green |
| 2 | Anna | Blue |
+-----------+-------------+------------+
Can someone please confirm if my query is correct? I don't understand in join queries why I have to specify FROM when I'm already telling which tables I'm using in the SELECT portion.
Note: The query works. I'm just not sure if there's a better way to do it.
FROMclause so the database knows which tables to select from, in your casesubscriptions JOIN users. The parenthesis around subscriptions is unneeded here. – ypercube Jul 19 '11 at 15:57usersas well. So why does the query work without specifyingusersas well inFROM? – CyberJunkie Jul 19 '11 at 16:07FROMpart is everything betweenFROMandWHERE:subscriptions JOIN users ON users.user_id = subscriptions.following– ypercube Jul 19 '11 at 16:10subscriptionsandusersbut limit the result according to theON(joining) condition. – ypercube Jul 19 '11 at 16:10