gpt4 book ai didi

Nhibernate HQL 子选择查询

转载 作者:行者123 更新时间:2023-12-03 12:05:37 25 4
gpt4 key购买 nike

我有以下 SQL 查询:

select c.id
from (select id from customers) c

这个查询没有实际值(value) - 为了这篇文章的目的,我大大简化了它。

我的问题:是否可以使用 HQL 在 from 子句中有一个子查询。如果没有,我是否可以先查询客户,有点像 sql 中的临时表,然后将结果用作下一个查询的来源?

谢谢

最佳答案

是的,这是可能的。

上面的查询可以用 HQL 编写为:

select Id
from Customer
where Id in (select Id from Customer)

关于Nhibernate HQL 子选择查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2713068/

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