我有这个查询,我需要在 hql 中转换它,但我有点困惑,不知道如何在 hql 的“where”子句中编写条件。
SELECT
message
FROM
p_message
WHERE
message_id=(
SELECT
a.scene
FROM
p_config a
INNER JOIN
p_rec_type b
ON a.email_id=b.email_id
AND rec_type=2
WHERE
a.email_type=1
)
这个 sql 查询的 hql 等价物是什么?