Hi all;

I was given a query today of the following:

SELECT record_id, record_title,artist_name,label_name,record_catalog
FROM record_profile
LEFT JOIN artist_profile,label_profile
ON record_profile.artist_id = artist_profile.artist_id OR
record_profile.label_id = label_profile.label_id
GROUP BY record_id

The user is trying to LEFT JOIN the artist and label tables to the record
table, and I realized that it has been quite a while since I did a LEFT JOIN
two tables to the same source table. Anyone know how to do this?

I can't remember if this is how it would be done:

SELECT record_id, record_title,artist_name,label_name,record_catalog
FROM record_profile
LEFT JOIN artist_profile ON record_profile.artist_id =
artist_profile.artist_id
LEFT JOIN label_profile ON record_profile.label_id = label_profile.label_id
GROUP BY record_id




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to