我开发针对Oracle数据库.当我需要手动写入(不使用像Hibernate这样的ORM)时,我将join语句放在where子句中.
例如(这是简单的只是为了说明风格):
Select * from customers c,invoices i,shipment_info si where c.customer_id = i.customer_id and i.amount > 999.99 and i.invoice_id = si.invoice_id(+) -- added to show how outer joins can be supported in this style order by i.amount,c.name
我从OLD oracle DBA学到了这种风格.我已经知道这不是标准的sql语法.除了非标准,而且数据库便携式更少,使用这种格式有什么其他的影响?
谢谢,
松鸦