Advertisement
Guest User

Untitled

a guest
Jan 30th, 2017
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Select G.Name as Game,
  2. Case
  3. When DATEPART(HOUR,G.Start) Between 0 and 11 Then 'Morning'
  4. When DATEPART(HOUR,G.Start) Between 12 and 17 Then 'Afternoon'
  5. When DATEPART(HOUR,G.Start) Between 18 and 23 Then 'Evening'
  6. END AS [Part of the Day],
  7. Case
  8. When G.Duration <=3 THEN 'Extra Short'
  9. When G.Duration Between 4 AND 6 THEN 'Short'
  10. When G.Duration >6 THEN 'Long'
  11. When G.Duration IS NULL THEN 'Extra Long'
  12. END as [Duration]
  13. from Games as G
  14. Order BY Game ASC,
  15. [Duration],
  16. [Part of the Day]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement