有3个表,t_a,t_b,t_c,他们都有id这个字段,谁能解释一下下面的语句select count(1) from 
 t_a a
,t_b b
,t_c c
where 
    a.id = b.id
and b.id = c.id
and c.id = a.id
我想不明白,3个表关联,写两个条件就够了吧?