Comments - how add string on value of result on mysql mariadb

8 years, 10 months ago Jan Steinman

Have you looked at the manual page for CONCAT()? It returns a string formed by concatenating its arguments.

So you could do (for example)

SELECT CONCAT(value_of_result, " string to be added") FROM some_table

where "value_of_result" is a field in the table "some_table".

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.