我在两个以上的表上应用连接,下面是 where 子句的一部分。在以下两个中,哪个是更好的编写方式,为什么?
where
d.bu_id = 'ABC'
and
hd.bu_id = 'ABC'
and
s.bu_id = 'ABC'
或者
where
d.bu_id = 'ABC'
and
hd.bu_id = d.bu_id
and
s.bu_id = d.bu_id