MySql concat和引号

时间:2013-03-08 09:57:06

标签: mysql concat

我正在尝试做这样的事情:

<td>style="background:url('myimage.jpg') no-repeat;"> + column + </td>

但是在尝试时遇到MySQL错误:

Concat ('<td>style="background:url('myimage.jpg') no-repeat;">', info_text, '</td') as Nicetext

我认为所有报价都是搞乱的。

感谢您的帮助!

2 个答案:

答案 0 :(得分:5)

您的字符串包含引号。你将不得不逃避他们。尝试类似:

Concat ('<td>style="background:url(\'myimage.jpg\') no-repeat;">', info_text, '</td') as Nicetext

答案 1 :(得分:1)

你没有逃过报价。试试这个:

Concat ('<td>style="background:url(\'myimage.jpg\') no-repeat;">', info_text, '</td') as Nicetext