Hql中不能使用下面的删除语法, 但对应sql的语法是正确的。
Hql中要用in:
delete c from Table1 c, Table2 d --ERROR
where c.refId = d.id
and d.contract.id = '001'
and d.year=2010
delete c from table1 c, table2 d --CORRECT
where c.refId = d.id
and d.contractId = '001'
and d.year=2010
Hql中要用in:
delete c from Table1 c --CORRECT
where c.refId in (select d.id from Table2 d where d.contract.id = '001' and d.year=2010)
本文探讨了HQL中不支持的删除语句形式,并给出了正确的实现方式。通过使用IN子句配合子查询,实现了跨表删除的功能,解决了特定场景下的数据处理问题。
986

被折叠的 条评论
为什么被折叠?



