Skip to content

Instantly share code, notes, and snippets.

@mpstenson
Created November 8, 2018 15:50
Show Gist options
  • Save mpstenson/53c9c295fa4ae14ce98d440834e1b82f to your computer and use it in GitHub Desktop.
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
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