Any way to use WHERE/LIKE in a SQLite query to find strings containing a bunch of numbers in a row?
I.e., the equivalent of REGEX \d{10,30}
(My implementation of sqlite does NOT support REGEXP.)
Any way to use WHERE/LIKE in a SQLite query to find strings containing a bunch of numbers in a row?
I.e., the equivalent of REGEX \d{10,30}
(My implementation of sqlite does NOT support REGEXP.)