I have 2 tables A and B.
Table A contains the names , and Table B contains the selected names .
Now, I would like to execute the following query in these tables using greendao. Please let me know if this is possible, and if not, then there are alternatives (possibly a raw request).
select *
from A inner join B
on A.nameid = B.nameid
In addition, the columns of table A: id, nameid, name
and the columns of table B:id, nameid, name, rating
source
share