[英]SQL Query similar to Grep functionality
我有以下bash命令:
grep -P 'The Beatles' | wc -l
我需要创建一个模仿相同功能的SQL查询。 表模式如下:
track_id
sales_date
sales_count
title
song_id
release
artist_id
artist_mbid
artist_name
duration
artist_familiarity
artist_hotttnesss
year
样本数据:
TRZZZZZ12903D05E3A,2014-06-19,79,Infra Stellar,SOZPUEF12AF72A9F2A,Archives Vol. 2,ARBG8621187FB54842,4279aba0-1bde-40a9-8fb2-c63d165dc554,Delerium,495.22893,0.69652442519,0.498471038842,2001
我已经编写了以下代码,但无法进行区分大小写的匹配。
SELECT Count(track_id) FROM songs WHERE track_id LIKE '%The Beatles%' OR title LIKE '%The Beatles%' OR song_id LIKE '%The Beatles%' OR release LIKE '%The Beatles%' OR artist_id LIKE '%The Beatles%' OR artist_mbid LIKE '%The Beatles%' OR artist_name LIKE '%The Beatles%' OR duration LIKE '%The Beatles%' OR artist_familiarity LIKE '%The Beatles%' OR artist_hotttnesss LIKE '%The Beatles%' OR year LIKE '%The Beatles%'
我尝试使用COLLATE Latin1_General_CS_AS
和COLLATE Latin1_General_BIN
但它给了我以下错误:
ERROR 1273 (HY000) at line 1: Unknown collation: 'Latin1_General_BIN'
无论如何,我可以区分大小写吗? 谢谢!
在MySQL中通常可以进行区分大小写的比较的一种简单方法是使用binary
:
SELECT Count(track_id)
FROM songs
WHERE track_id LIKE BINARY '%The Beatles%' OR
title LIKE BINARY '%The Beatles%' OR
song_id LIKE BINARY '%The Beatles%' OR
release LIKE BINARY '%The Beatles%' OR
artist_id LIKE BINARY '%The Beatles%' OR
artist_mbid LIKE BINARY '%The Beatles%' OR
artist_name LIKE BINARY '%The Beatles%' OR
duration LIKE BINARY '%The Beatles%' OR
artist_familiarity LIKE BINARY '%The Beatles%' OR
artist_hotttnesss LIKE BINARY '%The Beatles%' OR
year LIKE BINARY '%The Beatles%';
顺便说一句,这种类型的问题只是说“使用全文本索引,使用全文本索引”。 您可以在这里阅读有关内容。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.