On Call Statistics


/ Published in: SQL
Save to your folder(s)

Retrieves a list of "on call" incidents for the most recent time period. Selects all Support Analysts.


Copy this code and paste it in your HTML
  1. SELECT *
  2. FROM dbo.OnCall_stats
  3. WHERE Chargeable = 'yes'
  4. AND paid = '0'
  5. ORDER BY Entry_Date DESC

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.