我在MySQL查询中寻找其他编程语言中的format()
。预期结果是包含其他字段值的文本。
例如,像
select formatted from table where formatted=stringformat('some text {0}, {1} some text.', field1, field2)
答案 0 :(得分:3)
怎么样:
SELECT CONCAT('some text ', field1, ', ', field2, ' some text.') FROM table;
答案 1 :(得分:0)
SELECT('some text,'+ tb.Col1 +','+ tb.Col2)AS ColName
FROM
MyTable tb