監(jiān)理公司管理系統(tǒng) | 工程企業(yè)管理系統(tǒng) | OA系統(tǒng) | ERP系統(tǒng) | 造價(jià)咨詢管理系統(tǒng) | 工程設(shè)計(jì)管理系統(tǒng) | 甲方項(xiàng)目管理系統(tǒng) | 簽約案例 | 客戶案例 | 在線試用
X 關(guān)閉

開發(fā)篇-查詢顧問產(chǎn)出(即正式學(xué)員交費(fèi)金額)

申請(qǐng)免費(fèi)試用、咨詢電話:400-8352-114


主查詢:
Select
Student.ConsultantName as 顧問,
sum(Payment.PayMoney) as 金額,
Student.ConsultantID as ShowKey
from Payment,Student
where Payment.StudentID = Student.StudentID
and Payment.DateAndTime >= {@StartDate:開始日期}
and Payment.DateAndTime <= {@EndDate:結(jié)束日期}
and Payment.PaymentTypeID in (1,2)
group by Student.ConsultantID , Student.ConsultantName

子查詢:
Select
Bill.StudentName as 所屬學(xué)員姓名,
Bill.DateAndTime as 消費(fèi)日期,
Bill.BillTypeID as 類型,
Bill.Pay as 應(yīng)收金額,
Bill.Favourable as 優(yōu)惠金額,
Bill.Payed as 實(shí)收金額,
BillItem.ProductName as 收費(fèi)項(xiàng)名稱
from Bill,billitem,Student
Where bill.billid=billitem.billid
and Bill.StudentID = Student.StudentID
and Bill.DateAndTime >= {@StartDate}
and Bill.DateAndTime <= {@EndDate}
and Student.ConsultantID = {@ShowKey}

這個(gè)查詢?cè)谥鞑樵冊(cè)O(shè)計(jì)上,參考Payment充值表流水,達(dá)到精準(zhǔn)目的。 但在明細(xì)上調(diào)用的是消費(fèi)單信息,實(shí)現(xiàn)交費(fèi)的用途查詢。如果學(xué)員存在預(yù)充值(充值尚未進(jìn)行消費(fèi)),或者退學(xué)等,明細(xì)里不作反映。



(把以上代碼粘貼到《泛普培訓(xùn)學(xué)校管理軟件》查詢管理里,可直接使用)
發(fā)布:2007-03-30 09:49    編輯:泛普軟件 · xiaona    [打印此頁]    [關(guān)閉]
相關(guān)文章: