创建标准,加入协会

发布于 2024-10-03 00:16:18 字数 562 浏览 6 评论 0原文

如何使用 CreateCriteria 编写以下 SQL:

SELECT  sa_bec_matricula.*
FROM    sa_bec_matricula
        INNER JOIN sa_matricula ON sa_bec_matricula.sa_mtc_num = sa_matricula.sa_mtc_num
        INNER JOIN sa_periodo ON sa_matricula.sa_per_cod = sa_periodo.sa_per_cod
        INNER JOIN sa_tpo_beca ON sa_bec_matricula.sa_tpo_bec_cod = sa_tpo_beca.sa_tpo_bec_cod
WHERE   sa_periodo.sa_per_abi = 1
        AND sa_tpo_beca.sa_tpo_bec_gpr = 2 

附加模型。 链接文本

How can I write the following SQL using CreateCriteria:

SELECT  sa_bec_matricula.*
FROM    sa_bec_matricula
        INNER JOIN sa_matricula ON sa_bec_matricula.sa_mtc_num = sa_matricula.sa_mtc_num
        INNER JOIN sa_periodo ON sa_matricula.sa_per_cod = sa_periodo.sa_per_cod
        INNER JOIN sa_tpo_beca ON sa_bec_matricula.sa_tpo_bec_cod = sa_tpo_beca.sa_tpo_bec_cod
WHERE   sa_periodo.sa_per_abi = 1
        AND sa_tpo_beca.sa_tpo_bec_gpr = 2 

Attach the model.
link text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千紇 2024-10-10 00:16:18

这取决于您的模型以及它们如何映射到表,因为条件是根据对象的属性而不是模式中的表来表示的。

It depends on your models and how they are mapped to your tables as Criteria are in terms of properties on objects not tables in schemas.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文