Last active
December 15, 2015 02:59
-
-
Save neurotech/5191550 to your computer and use it in GitHub Desktop.
For pulling student status in a readable format.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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