How can I modify return values?
i.e. I perform a query:
SELECT STATUS
FROM USERS
RESULTS
=======
1
2
1
1
1
2
2
3
4
I want to replace the results to display:
RESULTS
=======
Active
Inactive
Active
Active
Active
Inactive
Inactive
Trial
Demonstration
Is there a way to do this within the SQL statement???
i.e. I perform a query:
SELECT STATUS
FROM USERS
RESULTS
=======
1
2
1
1
1
2
2
3
4
I want to replace the results to display:
RESULTS
=======
Active
Inactive
Active
Active
Active
Inactive
Inactive
Trial
Demonstration
Is there a way to do this within the SQL statement???
Comment