0

我想在两个带有连接条件的表上执行“左外连接”。表格是:

TableA(col1A, col2A)
TableB(col1B, col2B)

查询是:

select * from TableA ta left outer join TableB tb on (ta.col1A=tb.col1B and ta.col2A=tb.col2B);

如何使用休眠标准实现相同的目标。

——谢谢,Teja。

4

0 回答 0