SQL Trouble
I'm getting a bit stuck with using this SQL, basicly I want to do two inner joins. Okay, so thats probably not what I want to, theres probably a better way of doing what I'm trying to do, I just don't know what it is and can't figure it out. Here is my code:
<cfquery name="Recordset1" datasource="a8022782-access">
SELECT * FROM Reviews
INNER JOIN Videos ON Reviews.video_id = Videos.id
INNER JOIN Members ON Reviews.member_id = Members.member_id
</cfquery>
Hope thats enough info.
Thanks in advance,
Andrew
