Advertisement
Guest User

Untitled

a guest
Jan 28th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 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 'ExtraShort'
  9. When G.Duration Between 4 AND 6 THEN 'Short'
  10. When G.Duration >6 THEN 'Long'
  11. ELSE 'Extra Long'
  12. END as [Duration]
  13. from Games as G
  14. Order BY G.Name ASC,
  15. [Duration],
  16. [Part of the Day]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement