Created
November 8, 2018 15:50
-
-
Save mpstenson/53c9c295fa4ae14ce98d440834e1b82f to your computer and use it in GitHub Desktop.
Gets the time for a request to reach a certain status in HelpSpot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT HS_Request.xRequest, | |
Cast(Floor(Round((ClosedEvents.ClosedTime-dtGMTOpened) / 60.0, 0) * 60 / | |
86400) | |
AS VARCHAR(10)) | |
+ 'd ' | |
+ CONVERT(VARCHAR(5), Dateadd(second, | |
Round((ClosedEvents.ClosedTime-dtGMTOpened) / 60.0, 0) * 60, '19000101'), | |
8) AS | |
opentime | |
FROM HS_Request | |
JOIN (SELECT [xRequest], | |
Min([dtLogged]) AS ClosedTime | |
FROM [HS_Request_Events] | |
WHERE sColumn = 'xStatus' | |
AND sLabel = 'Problem Solved' | |
GROUP BY xRequest) AS ClosedEvents | |
ON HS_Request.xRequest = ClosedEvents.xRequest; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment