SQLite Forum

no such table: generate_series
Login
Note that your function generate_series(1,1,10) will probably not do what you want.  The three parameters are START, END, and STEP - so your function call says "start at 1, end at 1".  I suspect you mean generate_series(1,10,1)