Billing 用に 2 つのテーブルがあり、1 つBill_Master
はBill_Detail
です。両方のテーブルのレコードは次のとおりです...
**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
今、私は以下のようにRDLCを作りたいです
**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
私のデータベースはSQLite
です。どうやってするの?