I have a query I'm trying to build that that basically takes the punch out time for a job and using DATEADD
and the TotalTime
column to calculate the punch in time.
What I'm trying to do is use the ClockOutTime
alias and the TotalTime
alias. Being that they are aliases I'm not able to use them in a further calculation which leads me to believe that I may need to reformat it into a subquery or cte, however I'm not a SQL expert and have been unsuccessful trying to get this to work.
If anyone can help point me in the right direction I would be very grateful.
Thanks!
SELECT DISTINCT
wol.Work_Order_KEY AS WorkOrderKey,
Contact_Name AS Employee,
Labor_Date,
CONVERT(VARCHAR(5), Labor_Date, 108) AS ClockOutTime,
REPLACE(CAST(CONVERT(DECIMAL(10, 2), CAST(Hours AS INT) + ((Hours-
CAST(Hours AS INT)) * .60)) AS VARCHAR), '.', ':') AS TotalTime,
wol.Asset_ID AS AssetID,
al.Group_ID AS GroupID
FROM
WorkOrderContacts woc,
WorkOrderLaborList woll
JOIN
WorkOrderList wol ON wol.Work_Order_KEY = woll.Work_Order_KEY
JOIN
AssetList al ON wol.Asset_ID = al.Asset_ID
you'll need to create an outer query and use the alias there.