I have two tables. Table A and Table B. I am using Android with Room and Reactive Streams with ktx.
The Table A has two columns Title, Ids.
Row 1 - ['example', '1,2,3,4'].
The Table B has two columns Id, Desc.
Row 1 - [1, 'long desc']
Row 2 - [2, 'long desc 2'].
I am using a Flowable to get the data from the database but they are two different streams.
How do I get a list of rows which are in Table B, that have the ID's in table A. Table A stores the ids of Table B as a string.