Is there a way in MySQL to concatenate text to values using a SELECT statement? (like in Oracle)
For example, in Oracle you can write something like this:
SQL> select 'The Year is '|| year, 'The month is '|| month from time where rownum < 2;
'THEYEARIS'||YEAR
----------------------------------------------------
'THEMONTHIS'||MONTH
-----------------------------------------------------
The Year is 2009
The month is 1