I have two tables for Billing, one Bill_Master
and other is Bill_Detail
. The records in both tables are as follows...
**BILL_MASTER**
id party bill_amount
1 abc 500
2 def 600
**BILL_DETAILS**
mstr_id sr_no perticular amount
1 1 lunch box 100
1 2 water bag 400
2 1 pencil boxes 300
2 2 a4 papers 100
2 3 staple pins 200
Now I want to make a RDLC as per below
**RESULT_TABLE**
mstr_id party billamount
1 abc 500
lunch box 100
water bag 400
2 def 600
pencil boxes 300
a4 papers 100
staple pins 200
My database is SQLite
. How to do it?