gpt4 book ai didi

mysql - Spring Data JPA 左连接子查询

转载 作者:行者123 更新时间:2023-11-29 10:05:37 26 4
gpt4 key购买 nike

select sm.* 
from system_mail sm
left join (SELECT u.mail_code
from user_mail u
where u.to_user = 1 ) um
on sm.mail_id = um.mail_code
where um.id is null.

这个SQL在mysql中运行良好,但在SpringData JPA中运行错误,我如何在springdata jpa中使用它? enter image description here

最佳答案

您应该尝试使用 nativeQuery = true 强制使用数据库引擎运行 SQL:

@Query(nativeQuery = true, value="...yourqueryhere...")

关于mysql - Spring Data JPA 左连接子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51964386/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com