FIND_IN_SET exists in MySQL but how do I make it in SQLite?
- by Pentium10
In MySQL there exists FIND_IN_SET, that locates a match in a comma separated list.
mysql> SELECT FIND_IN_SET('b','a,b,c,d');
-> 2
How would I be able to do this in SQLite in query?
Please note, that I can't define or add user defined functions, the Android platform doesn't allow it.