how to join in android database sqlite
Asked
Active
Viewed 534 times
0
-
sqlite does not support full outer joins and right joins .. – Rat-a-tat-a-tat Ratatouille Apr 04 '14 at 04:21
-
`android.database.sqlite.SQLiteException: RIGHT and FULL OUTER JOINs are not currently supported` this more clearly tells you,what is it thats not understandable ?? – Rat-a-tat-a-tat Ratatouille Apr 04 '14 at 04:22
-
possible duplicate of [What joins does SQLite support?](http://stackoverflow.com/questions/774475/what-joins-does-sqlite-support) – enrico.bacis Aug 27 '14 at 08:51
2 Answers
0
this is how I usually select and join between two or more different tables :
SELECT master_spaj._id,master_spaj.SPAJ_ID,pemegang_polis.nama_pp,table_tertanggung.nama_tt,master_spaj.IdProposal FROM master_spaj,pemegang_polis,table_tertanggung WHERE master_spaj.SPAJ_ID=pemegang_polis.SPAJ_ID AND master_spaj.SPAJ_ID=table_tertanggung.SPAJ_ID

Menma
- 799
- 1
- 9
- 35
0
Used queries to URL conversions.
OData v4 introduces a new operators, which may resolve your scenario.
For more please reference this:http://docs.oasis-open.org/odata/odata/v4.0/odata-v4.0-part2-url-conventions.html,

Sreekanth
- 407
- 4
- 8
- 20