I solved it.
SELECT * FROM show_episodes, shows WHERE show_episodes.show_id=shows.id order by show_episodes.release_date desc limit 6
basically I just join the two tables and I just state what the bridge is between the two tables then go about my biz.
thanks CLFLAVA, I wouldn't have gotten...