Is there any helper for joins? #785
-
Is there any helper method/function for joins (selecting data from more than one table) or do we have to use raw query? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
It does not include helpers for complex queries. Personally I create views (using raw SQL) during onCreate. Some views are joins. Then I can use the simple query API (using the view as the table argument) |
Beta Was this translation helpful? Give feedback.
-
I don't have specific easy examples to share. Basically you use |
Beta Was this translation helpful? Give feedback.
It does not include helpers for complex queries. Personally I create views (using raw SQL) during onCreate. Some views are joins. Then I can use the simple query API (using the view as the table argument)