I have a column ( SERVICE_ID ) in my table where I can have only 3 values: 0, 1 and 2.
In a SELECT I would like to change these values ββto English words to display:
select client, SERVICE_ID from customers
Currently displayed:
| John | 1 | Mike | 0 | Jordan | 1 | Oren | 2
I want to change the request to get:
| John | QA | Mike | development | Jordan | QA | Oren | management
Is there a way to do this using only select?
source share