Is there a way to show different strings based on value found in a column?
i.e.
SELECT value FROM table;
+--------+
| value  |
+--------+
|      1 |
|      0 |
|      1 |
|      1 |
+--------+
The output I want is this:
+--------+
| value  |
+--------+
|    yes |
|     no |
|    yes |
|    yes |
+--------+
How?
 
     
    