首頁 > 後端開發 > 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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板