我有两张用于计费的表,一张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
. 怎么做?