SQLite 中的近似匹配搜索

问题描述 投票:0回答:1

参见此表:

我想使用近似匹配搜索 例如 当我搜索“ففه”这个词时,它会显示“ففه”的记录 依此类推,“??”它向我显示“??”的记录 我不想使用 REPLACE 功能

sqlite search match approximate
1个回答
0
投票

这里是 Deplhi 中 Select 语句的简短示例:

Query.SQL.Text := 'Select * from Track  where instr(Uri,:Uri)'; 
Query.ParamByName('Uri').asstring := Uri;
Query.Open;

这里有一个很好的解释:[https://www.w3schools.com/php/php_mysql_prepared_statements.asp]

© www.soinside.com 2019 - 2024. All rights reserved.