I would like to do an inner join on my database in my Android app. Is this even possible? What about a left join? I know cursor joiner exists but the documentation isn't clear at all. Can anyone provide any further insight?
Thanks
I would like to do an inner join on my database in my Android app. Is this even possible? What about a left join? I know cursor joiner exists but the documentation isn't clear at all. Can anyone provide any further insight?
Thanks
You'll do joins in the SQL expression itself. It's documented here: http://www.sqlite.org/lang_select.html. There's support for left joins, but not right joins (which doesn't really matter - you just switch the arguments around).