gpt4 book ai didi

ruby - Rails PostgreSQL 使用 LIKE 进行不区分大小写的搜索

转载 作者:数据小太阳 更新时间:2023-10-29 06:42:17 25 4
gpt4 key购买 nike

我的 Controller 里有这个:

Konkurrencer.where("title LIKE ?", "%#{params[:q]}%").limit(4)

我认为这个查询是区分大小写的。它不应该区分大小写。

最佳答案

您可以使用 ILIKE在何处:

Konkurrencer.where("title ILIKE ?", "%#{params[:q]}%").limit(4)

来自文档:

The key word ILIKE can be used instead of LIKE to make the match case-insensitive according to the active locale. This is not in the SQL standard but is a PostgreSQL extension.

关于ruby - Rails PostgreSQL 使用 LIKE 进行不区分大小写的搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9860947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com