I have the following situation in Sql Server:
In a table we have a column that we fill with three possible values 1, 2 and 3. Let's suppose that 1 means yes, 2 means no and 3 means maybe.
Is there a way to select this column showing the values as yes, no and maybe instead of 1, 2 and 3?
Yes ..you can use CASE Expression to do that