如何在 postresql 中进行不区分大小写的搜索?

发布于 2024-12-11 11:10:19 字数 537 浏览 0 评论 0原文

我有这样的 postresql 表:

id  user    year        id_card_no

1   john    1995        AZE546546       
2   ali     2002        464645AZE               
3   hayat   2007        4454AZE45455            
4   jack    2008        455454554

我想获取列(id_card_no)字段内具有 AZE 字样的所有值。我使用了这个查询:

SELECT * FROM table_name WHERE  id_card_no LIKE '%AZE%' 

但是我得到了第一个字段,其中id等于1。如何获取 id_card_no 内包含 AZE 字样的所有列?

I have such postresql table:

id  user    year        id_card_no

1   john    1995        AZE546546       
2   ali     2002        464645AZE               
3   hayat   2007        4454AZE45455            
4   jack    2008        455454554

I want to get all values which have AZE word inside column (id_card_no) field. I used this query:

SELECT * FROM table_name WHERE  id_card_no LIKE '%AZE%' 

But I got first field which id is equal to 1. How can I get all columns which have AZE word inside id_card_no?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半夏半凉 2024-12-18 11:10:19

要执行不区分大小写的 LIKE,您有两种选择:

SELECT * 
FROM table_name 
WHERE  id_card_no ILIKE '%AZE%' 

SELECT * 
FROM table_name 
WHERE lower(id_card_no) LIKE lower('%AZE%')

For doing a case insensitive LIKE you have two options:

SELECT * 
FROM table_name 
WHERE  id_card_no ILIKE '%AZE%' 

or

SELECT * 
FROM table_name 
WHERE lower(id_card_no) LIKE lower('%AZE%')
九命猫 2024-12-18 11:10:19

这种选择无法扩展,因为它们注定要在 9.1 之前的 PostgreSQL 上进行顺序扫描。

如果您的表很大,那么最好阅读 9.1 中的三元组索引以及它们在加速子字符串搜索中的使用可能性。

如果您使用的不是 PostgreSQL 9.1,则应考虑在子字符串数组上创建 GIN/GIST 索引,然后使用数组访问运算符使索引扫描成为可能。

This kind of select do not scale as they are doomed to sequential scans on pre-9.1 PostgreSQL.

If your table is going to be big, then it is better, that you read about the trigram indexes and possibilities of their use in 9.1 for speeding up substring searches.

If you are not on PostgreSQL 9.1, you should consider creating a GIN/GIST index on arrays of substrings and then using array access operators to make index scans possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文