Skip to content

Instantly share code, notes, and snippets.

@neurotech
Last active December 15, 2015 02:59
Show Gist options
  • Select an option

  • Save neurotech/5191550 to your computer and use it in GitHub Desktop.

Select an option

Save neurotech/5191550 to your computer and use it in GitHub Desktop.
For pulling student status in a readable format.
CASE STUDENT_STATUS_ID
WHEN 1 THEN 'Application Cancelled'
WHEN 2 THEN 'Alumni'
WHEN 3 THEN 'Past Enrolment'
WHEN 4 THEN 'Returning Enrolment'
WHEN 5 THEN 'Current Enrolment'
WHEN 6 THEN 'Place Accepted'
WHEN 7 THEN 'Offered Place'
WHEN 8 THEN 'Interview Pending'
WHEN 9 THEN 'Wait Listed'
WHEN 10 THEN 'Application Received'
WHEN 11 THEN 'Information Sent'
WHEN 12 THEN 'Enquiry'
WHEN 13 THEN 'Interview Complete'
WHEN 14 THEN 'Expired Offer'
WHEN 15 THEN 'Expired Application'
END AS "STATUS"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment