我正在尝试做这样的事情:
<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
我想是所有的报价都把事情搞砸了。
感谢大家的帮助!
您的字符串包含引号。你将不得不逃离他们。尝试类似:
Concat ('<td>style="background:url(\'myimage.jpg\') no-repeat;">', info_text, '</td') as Nicetext
你没有逃脱引号。试试这个 :
Concat ('<td>style="background:url(\'myimage.jpg\') no-repeat;">', info_text, '</td') as Nicetext