我使用 Cassandra 3.7 并有一个带有 SASI 索引的文本列。假设我想在中间某处找到包含 '%' 字符的列值。问题是 '%' 是 LIKE 子句的命令字符。如何在查询中转义 '%' 字符LIKE '%%%'
?
这是一个测试脚本:
DROP keyspace if exists kmv;
CREATE keyspace if not exists kmv WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor':'1'} ;
USE kmv;
CREATE TABLE if not exists kmv (id int, c1 text, c2 text, PRIMARY KEY(id, c1));
CREATE CUSTOM INDEX ON kmv.kmv ( c2 ) USING 'org.apache.cassandra.index.sasi.SASIIndex' WITH OPTIONS = {
'analyzed' : 'true',
'analyzer_class' : 'org.apache.cassandra.index.sasi.analyzer.NonTokenizingAnalyzer',
'case_sensitive' : 'false',
'mode' : 'CONTAINS'
};
INSERT into kmv (id, c1, c2) values (1, 'f22', 'qwe%asd');
SELECT c2 from kmv.kmv where c2 like '%$$%$$%';
选择查询不返回任何内容。