I am trying to do a join on 2 different SQLite tables. Here is my SQL Statement:
I keep getting the following error:
android.database.sqlite.SQLiteException: no such column: tbl_categories.cl_reference (Sqlite code 1):
I isolated the query a bit and it is giving the same error for the other columns as well.
Any suggestions?
B4X:
Select * FROM tbl_items WHERE tbl_categories.cl_reference = 'cat01' AND tbl_categories.cl_song = tbl_items.cl_song ORDER BY cl_last_access_time ASC
I keep getting the following error:
android.database.sqlite.SQLiteException: no such column: tbl_categories.cl_reference (Sqlite code 1):
I isolated the query a bit and it is giving the same error for the other columns as well.
Any suggestions?