如何使用while循环遍历select语句中的数据并将它们放入临时表中 [英] How to iterate through data from select statement using while loop and put them into temp table

查看:514
本文介绍了如何使用while循环遍历select语句中的数据并将它们放入临时表中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,



我不是那个专业的SQL,我一度陷入困境,无法想出办法。我正在尝试获取一份报告的数据。我已经为我的存储过程创建了一个查询,如下所示。



Hello,

i am not that pro in SQL, i got stuck at one point and can't figure a way out of this. i am trying to get data for one report. i have created a query for my stored procedure which is like this .

SELECT dbo.tblWorkHistory.WeekEndingDate,dbo.tblWorkHistory.WorkerID, 
        dbo.tblTitles.Title + ' ' + dbo.tblWorkers.Forename + ' '  + dbo.tblWorkers.Surname AS WorkerName,
        dbo.tblClients.ClientName,dbo.tblWorkHistory.WorkDate,
        dbo.tblJobCategories.JobCategory,dbo.tblRateTypes.RateType,
        dbo.tblWorkHistoryRates.Hours,dbo.tblWorkHistoryRates.ChargeRate,
        dbo.tblClients.ClientID,dbo.tblBookings.CostCentreID,dbo.tblSites.SiteID,dbo.tblSiteRateContracts.JobCategoryID,
        dbo.tblWorkHistory.BranchID,dbo.tblSystemBranches.BranchLocation,dbo.tblWorkHistoryRates.RateTypeID,dbo.tblCostCentres.CostCentre, 
        dbo.tblSystemBranches.OwnerID, tblWorkHistory.StartTime, tblWorkHistory.FinishTime, tblWorkHistory.BreakHours,
        tblWorkHistoryRates.Hours * tblWorkHistoryRates.ChargeRate AS Charge
FROM    dbo.tblWorkHistory LEFT OUTER JOIN
        dbo.tblBookings ON dbo.tblWorkHistory.BookingID = dbo.tblBookings.BookingID LEFT OUTER JOIN
        dbo.tblSiteRateContracts ON dbo.tblBookings.SiteRateContractID = dbo.tblSiteRateContracts.SiteRateContractID LEFT OUTER JOIN
        dbo.tblSites ON dbo.tblSiteRateContracts.SiteID = dbo.tblSites.SiteID LEFT OUTER JOIN
        dbo.tblClients ON dbo.tblSites.ClientID = dbo.tblClients.ClientID LEFT OUTER JOIN
        dbo.tblJobCategories ON dbo.tblSiteRateContracts.JobCategoryID = dbo.tblJobCategories.JobCategoryID LEFT OUTER JOIN
        dbo.tblCostCentres ON dbo.tblBookings.CostCentreID = dbo.tblCostCentres.CostCentreID LEFT OUTER JOIN
        dbo.tblWorkers ON dbo.tblWorkHistory.WorkerID = dbo.tblWorkers.WorkerID LEFT OUTER JOIN
        dbo.tblTitles ON dbo.tblWorkers.TitleID = dbo.tblTitles.TitleID LEFT OUTER JOIN
        dbo.tblSystemBranches ON dbo.tblWorkHistory.BranchID = dbo.tblSystemBranches.BranchID LEFT OUTER JOIN
        dbo.tblSystemOwner ON dbo.tblSystemBranches.OwnerID = dbo.tblSystemOwner.OwnerID LEFT OUTER JOIN
        dbo.tblWorkHistoryRates ON dbo.tblWorkHistory.WorkHistoryID = dbo.tblWorkHistoryRates.WorkHistoryID LEFT OUTER JOIN
        dbo.tblRateTypes ON dbo.tblWorkHistoryRates.RateTypeID = dbo.tblRateTypes.RateTypeID
WHERE   (dbo.tblWorkHistory.InvoiceID IS NULL) AND (dbo.tblSiteRateContracts.IsDailyRate = 1) 
        AND (dbo.tblWorkHistory.Completed = 1)
        AND (dbo.tblWorkHistoryRates.Hours IS NOT NULL)
        AND (dbo.tblClients.BranchID = 9)
        AND (dbo.tblSystemBranches.OwnerID = 3





但是因为数据库已规范化,所以它返回多行。例如,一个工人在一个日期为一个客户工作,他已经完成了基本和加班时间。现在基本和加班都是费率类型,客户端和ratetype之间有1对多的关系,因此我得到这个工人的两行,我想要的是它应该为工人的这样的工作历史显示一行,并在一行显示基本作为一列和加班作为另一列。



i对如何在存储过程中使用while循环并迭代此select语句的结果没有太多想法?我不想使用光标,所以如果你们可以请帮助我,这里真的很棒



我尝试了什么:



i尝试使用数据透视,但因为我想显示小时数,支付率和费率列,所以它无法正常工作。



but because the database is normalized it returns multiple rows. for instance a worker has worked for one client on one date and he has done basic and overtime hours. now basic and overtime are rate types and there is 1 to many relationship between client and ratetype hence i am getting two rows for this worker, what i want is that it should display one row for worker's such work history and in one row it display basic as one column and overtime as another column.

i don't have much idea on how i can use while loop inside stored procedure and iterate through the result of this select statement? i don't want to use cursor so if you guys can please help me here will be really great full

What I have tried:

i tried using pivot but because i want to display hours, pay rate and charge rate columns it is not working proper.

推荐答案

You can find the solution here. Try to avoid cursors though wherever possible.





[ ^ ]


这篇关于如何使用while循环遍历select语句中的数据并将它们放入临时表中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆