Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outer Join in MySQL

Status
Not open for further replies.

25884

Programmer
Mar 12, 2001
46
AP
hi!
i have a query in Oracle SQL and i wanna convert it so it runs on MySQL how do i go about doing it...It has an outer join.
"select a.item_name,a.category_id,a.course_id,a.chapter_id,a.item_id,b.page_id,b.page_url,b.page_next_url from course_chapter_detail a,course_chapter_item_detail b where a.category_id = 1 and a.course_id= 1 and a.chapter_id = 1 and a.category_id =b.category_id(+) and a.course_id =b.course_id(+) and a.chapter_id =b.chapter_id(+) and a.item_id = b.item_id(+) and b.page_prev_url(+) IS NULL"

Where can i get some tutorial that shows how to use joins in MySQL?
Thanks a lot.
Sonali
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top