文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

gorm 有 OR 查询

2024-04-04 23:37

关注

Golang小白一枚,正在不断学习积累知识,现将学习到的知识记录一下,也是将我的所得分享给大家!而今天这篇文章《gorm 有 OR 查询》带大家来了解一下##content_title##,希望对大家的知识积累有所帮助,从而弥补自己的不足,助力实战开发!


问题内容

我陷入了生成在运行时动态创建的查询的困境。

我想创建一个 having 查询,中间有 or,例如

select name from `user_group`  where ((group_key = 'age' and group_value = '20')) 

or ((group_key = 'division' and group_value = 'accounting')) 
or ((group_key = 'age' and group_value = '22')) 
or ((group_key = 'division' and group_value = 'kitchen'))

group_by name
having 
((sum(group_key = 'age' and group_value = '20') > 0) 
and 
(sum(group_key = 'division' and group_value = 'accounting') > 0))

or 

((sum(group_key = 'age' and group_value = '22') > 0) 
and 
(sum(group_key = 'division' and group_value = 'kitchen') > 0))

请注意,having 语句中的 or 就是我所要求的。

我目前通过 gorm 得到了这个:

select name from `user_group`  where ((group_key = 'age' and group_value = '20')) 

or ((group_key = 'division' and group_value = 'accounting')) 
or ((group_key = 'age' and group_value = '22')) 
or ((group_key = 'division' and group_value = 'kitchen'))

group_by name
having 
((sum(group_key = 'age' and group_value = '20') > 0) 
and 
(sum(group_key = 'division' and group_value = 'accounting') > 0))

and 

((sum(group_key = 'age' and group_value = '22') > 0) 
and 
(sum(group_key = 'division' and group_value = 'kitchen') > 0))

注意 having 语句中的 and

这是查询生成:

for _, condition := range resp.Allow.Conditions {
    for key, val := range condition {
        if len(key) <= 0 || len(val) <= 0 {
            continue
        }
        groupQuery = groupQuery.Or("(group_key = ? AND group_value = ?)", key, val)
        groupQuery = groupQuery.Having("SUM(group_key = ? AND group_value = ?) > 0", key, val)
    }
}
groupQuery = groupQuery.Group('name')

gorm 中有什么方法可以做到这一点吗?我查看了文档,我最好的选择是它必须是原始 sql 查询。我不喜欢它,但如果这是唯一的方法也没关系。

注意:我使用 mysql 作为方言


解决方案


该行的输出:

groupquery = groupquery.having("sum(group_key = ? and group_value = ?) > 0", key, val)

是块

((sum(group_key = 'age' and group_value = '20') > 0) 
and 
(sum(group_key = 'division' and group_value = 'accounting') > 0))

and 

((sum(group_key = 'age' and group_value = '22') > 0) 
and 
(sum(group_key = 'division' and group_value = 'kitchen') > 0))

这是正确的。查看每行的所有左括号和右括号:

````(cond1)和(cond2)和(cond3)和(cond4)````

要根据您的要求在having语句的中间获取一个或:

((sum(group_key = 'age' and group_value = '20') > 0) 
and 
(sum(group_key = 'division' and group_value = 'accounting') > 0))

and 

((sum(group_key = 'age' and group_value = '22') > 0) 
and 
(sum(group_key = 'division' and group_value = 'kitchen') > 0))

这将是:

(cond1) 与 (cond2) 或 (cond3) 与 cond(4)

会导致不太预期的结果。

更合乎逻辑的是:

(cond1) 或 (cond2) 或 (cond3) 或 cond(4)

或者:

((cond1)和(cond2))或((cond3)和cond(4))

最后一个版本(似乎是您的目标)无法按照规定在循环中生成,并且需要特定的方法。

看起来您几乎只能使用原始 sql。

到这里,我们也就讲完了《gorm 有 OR 查询》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注编程网公众号,带你了解更多关于的知识点!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯