Doing order by using the Jaro-Winkler distance algorithm?
Posted
by Pentium10
on Stack Overflow
See other posts from Stack Overflow
or by Pentium10
Published on 2010-05-17T08:33:58Z
Indexed on
2010/05/17
11:00 UTC
Read the original article
Hit count: 257
I am wondering how would I be able to run a SQLite order by in this manner
select * from contacts order by jarowinkler(contacts.name,'john smith');
I know Android has a bottleneck with user defined functions, do I have an alternative?
© Stack Overflow or respective owner