我有一个包含设置列的表,在三个不同的行中包含以下数据:
{{product.description}}
{{user.email}}
{{last_date}}
我想追加字符串'|格式'与动态数据,输出应该像这样
{{product.description | format}}
{{user.email | format}}
{{last_date | format}}
我尝试使用MySQL REPLACE()方法,但问题是如何匹配这个指定的模式。
对此有什么UPDATE查询?
答案 0 :(得分:0)
you can use the REGEXP operator as follows:
SELECT (statement) REGEXP '{product.description}[.space.]|[.space.]format';
希望它有所帮助。