标签: mysql sql
用户将通过以下格式提供短信内容
Dear #name#,This is testing SMS.
我想用表现有值替换#name#place holder。这里有100k行。
数据:
输出:
答案 0 :(得分:1)
希望这有效!如果文本是静态的,则在文本之间连接列值
SELECT 'Dear'+columname+', This is testing SMS' FROM tablename;