我想使用某些字母在完整的搜索列中搜索,我的意思是:
select "Name","Country","_score" from datatable where match("Country", 'China');
返回很多行并且没问题。我的问题是,我如何搜索例如:
select "Name","Country","_score" from datatable where match("Country", 'Ch');
我想看看,中国,智利等等。
我认为 match_type phrase_prefix 可以是答案,但我不知道如何使用(正确的语法)。