select item.name, bh.customer_type, bl.quantity from tbl_item_master item, tbl_billing_header bh, tbl_billing_line bl where item.name = bl.item_name and bh.bill_no=bl.bill_no and bh.bill_status="B"
*OutPut*
item customertype quantity
Heart W 120
LIVER W 121
WINGSML I 11
Heart W 200
我想添加列和显示当我们有相同的项目和客户类型时假设当心脏的物品具有相同的客户类型是W然后在那种情况下我们将数量添加到220并显示它
答案 0 :(得分:0)
如果要对具有相同项目和自定义类型的值求和,请使用以下查询
select sum(quantity) from tbl_item_master where item = 'Heart' and customertype = 'W'