数据库表行值替换提到的名称

时间:2018-01-11 09:55:01

标签: mysql sql

用户将通过以下格式提供短信内容

Dear #name#,This is testing SMS.

我想用表现有值替换#name#place holder。这里有100k行。

数据:

enter image description here

输出:

Sample Output result:

1 个答案:

答案 0 :(得分:1)

希望这有效!如果文本是静态的,则在文本之间连接列值

SELECT 'Dear'+columname+', This is testing SMS' 
FROM tablename;