创建标准,加入协会
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的模型以及它们如何映射到表,因为条件是根据对象的属性而不是模式中的表来表示的。
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.