如何在 postresql 中进行不区分大小写的搜索?
我有这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要执行不区分大小写的 LIKE,您有两种选择:
或
For doing a case insensitive LIKE you have two options:
or
这种选择无法扩展,因为它们注定要在 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.