没有听说过.
只知道外连接.
我想你的所谓强连接就是
select a.* from a, b where a.id=b.id
一定要a,b表中都有的id才选出来,
弱连接就是:
select a.* from a, b where a.id=b.id(+)
就是b中没有,a 也选出来.