Mysql で文字列を付け足して出力

concatを使うと,付け足しできる


mysql> select concat('付け足し',current_timestamp,'できます') from table;

 付け足し2018-03-03 20:36:16できます