首页 > 后端开发 > Golang > 正文

GORM golang SQL 查询执行不区分大小写的搜索不起作用

PHPz
发布: 2024-02-05 22:03:08
转载
977 人浏览过

GORM golang SQL 查询执行不区分大小写的搜索不起作用

问题内容

我想在 Golang 中进行不区分大小写的搜索。我正在使用这个库。

我已尝试以下方法,但不起作用。

someId = "abc"
model := abcModel{Id: someId}
result := p.db.Where("lower(id) = lower(?)", someId).Take(&model)
登录后复制
<code>
Id is primary-key here
</code>
登录后复制

我也尝试过

db.Where("LOWER(id) LIKE LOWER(?)", fmt.Sprintf("%%%s%%", someId)).Take(&model)
登录后复制

有人可以帮忙吗?不确定出了什么问题。任何指示将不胜感激。

谢谢!

<小时/>

编辑

这就是我在数据库中拥有的内容

id      |          created_at           |          updated_at           | deleted_at |  client_id | ttl  |             client_type              |    token  |          expires_on          
--------------------------------------+-------------------------------+-------------------------------+------------+--------------------------------------+------+--------------------------------------+
        ABC      | 2023-10-30 16:10:59.614132+00 | 2023-10-30 16:10:59.614132+00 |            |  ae30e377  | 100  | 7da0e618-7393-45c2-94dc-5e7b1d6c1610 |   abc     | 2023-10-30 16:27:39.613566+00
登录后复制

我希望上面的查询会在数据库中返回这条记录,因为它是不区分大小写的搜索。

我收到的错误是 record not found https://gorm.io/docs/error_handling.html#ErrRecordNotFound

我正在 Docker 容器中运行 Postgres 服务器。 https://hub.docker.com/_/postgres


正确答案


尚不清楚 p 代表什么,但这里有一个使用 Take()Where().Take() 的工作示例:

func main() {
    // open connection to postgres
    db, err := gorm.Open(postgres.New(...), &gorm.Config{})
    if err != nil {
        panic("failed to connect database")
    }

    // Get the row
    someId := "abc"
    var result abcModel
    db.Take(&result, "lower(id) = lower(?)", someId)
    // Print the row
    fmt.Println(result)

    // Find the row using Where
    var result2 abcModel
    db.Where("lower(id) = lower(?)", someId).Take(&result2)
    // Print the row
    fmt.Println(result2)

}
登录后复制

输出:

$ go run .
{ABC 2023-10-30 10:00:57.774905 -0700 PDT 2023-10-30 10:00:57.774905 -0700 PDT <nil> ae30e377 100 7da0e618-7393-45c2-94dc-5e7b1d6c1610 abc 2023-10-30 10:00:57.774906 -0700 PDT}
{ABC 2023-10-30 10:00:57.774905 -0700 PDT 2023-10-30 10:00:57.774905 -0700 PDT <nil> ae30e377 100 7da0e618-7393-45c2-94dc-5e7b1d6c1610 abc 2023-10-30 10:00:57.774906 -0700 PDT}
登录后复制

因此,您的原始代码似乎可以工作,只是您的错误可能与 p 的定义方式有关

以上是GORM golang SQL 查询执行不区分大小写的搜索不起作用的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:stackoverflow.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板