I\'d like to use a regular expression in sqlite, but I don\'t know how.
My table has got a column with strings like this: \"3,12,13,14,19,28,32\" Now if I type \"whe
In Julia, the model to follow can be illustrated as follows:
using SQLite using DataFrames db = SQLite.DB(".db") register(db, SQLite.regexp, nargs=2, name="regexp") SQLite.Query(db, "SELECT * FROM test WHERE name REGEXP '^h';") |> DataFrame