我想在 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中文網其他相關文章!