Is there supported syntax to do 'deep' queries? That is where A relates to B relates to C, returning fields from each
table?<br/><br /> This doesn't seem to work. Is there a google-able term for this sort of query?<br /><br /> select <br
/> foo.aaa,<br /> bar.bbb,<br /> baz.ccc<br /><br /> from<br /> foo,bar,baz<br /><br /> where <br />
foo.bar_id= <a href="http://bar.id">bar.id</a><br /> and<br /> bar.baz_id = <a href="http://baz.id">baz.id</a><br
/><br/><br /><br />