Let a table 'Example' has columns id, value.
| id | value |
|--- | ----- |
|1 | randm |
Now I want to write something like this
SELECT id, 'x is 'value'' as result
FROM Example
WHERE id = 1;
which prints
| id | result |
| -- | ------ |
| 1 | x is 'randm' |
How can I do this? In python, if we use {} in the middle of a string, we could pass variables, which is similar to what I want in SQL.