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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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).