我想要一个输出
的查询IDNum___FName___LName____TotCharge
1_______Joe_______Pesci_____$3262
2_______Lara______Croft______$2654
etc
IDNum
,FName
和LName
是表医生
TotCharge由2个sql块组成,两个块都以下列格式输出
PhysID__Charge
1_______2034
2_______1254
etc
这是代码:
SELECT Patient.Phys_id AS Expr1, Sum(Patient.Charge) AS sum_of_Charge1
FROM Patient
GROUP BY Patient.Phys_id;
两者之间的唯一区别是表患者变为表治疗。
我怎样才能将这2项费用加到1并按照我想要的格式从问题的顶部进行组织?