From a first Query in Table1, I've extracted a list_of_IDs.
I'd like to Query again in Table2 according to this list. Something like:
SELECT Table2.Col1, Table2.Col2 ... FROM Table2 WHERE Table2.rowid IN list_of_IDs ORDER BY ...
SQLite v1.50: syntax error. IN seems not supported.
Is it a way around ?
I'd like to Query again in Table2 according to this list. Something like:
SELECT Table2.Col1, Table2.Col2 ... FROM Table2 WHERE Table2.rowid IN list_of_IDs ORDER BY ...
SQLite v1.50: syntax error. IN seems not supported.
Is it a way around ?