select sum(a.new_trueamount) from new_srv_repair a left join new_srv_workorderbase b on a.new_srv_workorder_id = b.new_srv_workorderid left join new_srv_productlinebase c on a.new_productline_id = c.new_srv_productlineid where b.new_srv_chargestatus = 3 and b.new_approvalstatus = 3 and b.new_station_id = 'e3430001-0100-7f49-0000-06236f9104f9' and b.new_completiontime between '2023/01/01' and '2023/01/31'
时间: 2023-02-26 20:02:13 浏览: 98
srv.rar_srv_服务端 DELPHI_服务端集合
这是一个 SQL 查询语句,它查询了从表 "new_srv_repair" 中 "new_trueamount" 的总和。该查询使用了两个左连接:"new_srv_workorderbase" 和 "new_srv_productlinebase"。在 where 子句中,它限制了结果仅包括 "new_srv_chargestatus" 等于 3 且 "new_approvalstatus" 等于 3 的记录,并且 "new_station_id" 等于特定的字符串值,同时 "new_completiontime" 必须在 2023 年 1 月 1 日至 2023 年 1 月 31 日之间。
阅读全文