I have 2 queries that give me the same result set. I'm trying to choose which method is better and fastest...
QUERY #1
DESCRIBE SELECT *
FROM recording r
JOIN (
SELECT r.work_id
FROM recording r
WHERE r.recording_id = 252
) t1 ON t1.work_id = r.work_id
QUERY #2
DESCRIBE SELECT *
FROM recording r
JOIN recording r2 ON r2.work_id = r.work_id
Is there an advantage choosing one method over the other ? Thanks