我需要使用soundex
或metaphone
对android
phonegap
进行sql搜索。
但soundex
和metaphone
都不起作用。
实施例:
SELECT * FROM customers WHERE soundex(surname) = soundex('Mayer');
这给我带来了soundex
未知的消息。
有人知道我如何使用soundex
或soundex
与phonegap
(android
)一起使用?
答案 0 :(得分:0)
可以在手机间隙代码中创建soundex / metaphone索引。在Javascript中,您可以使用clj-fuzzy library。
customers
表格中添加soundex / metaphone列。因此插入内容可能如下所示:
insert into customers (surname, surname_metaphone)
values ('Smith', 'SM0')
选择如下:
select * from customers where surname_metaphone = 'SM0'