Posted by: yak_yak_yak April 21, 2008
sql question
Login in to Rate this Post:     0       ?        

select a.name, b.name  from cat a 

inner join dog b

on a.id =b.id

inner join animal c

on b.id =c.id

where c.color = 'Brown'

Both from table A and B.

or USE * which will give you all.

 

Read Full Discussion Thread for this article