我正在尝试将此函数包含在websql查询中,例如
"select * from products where filter like '%pname%' order by soundex(filter);"
但根据这个:https://www.sqlite.org/lang_corefunc.html
Soundex函数仅在sqlite使用SQLITE_SOUNDEX参数编译时才可用,我不认为是抛出chrome的情况
could not prepare statement (1 no such function: soundex)
所以,我的问题是,有没有办法使用soundex函数,或者至少有一些其他类似函数?
编辑1: 现在我只是用
order by coalesce(like('pname', filter), 0)
这不是最终的解决方案,但比特定列的简单订单更好。
答案 0 :(得分:0)
WebSQL没有指定哪些SQL函数可用,也没有安装用户定义函数的机制。