以下查询适用于 MySQL:
SELECT concat(title,'/') FROM `socials` WHERE 1
它将/连接到选定的标题字段。
但是,当我尝试执行以下操作时:
SELECT concat(*,'/') FROM `socials` WHERE 1
它返回以下错误:
#1064 - You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version for the right syntax to use near '*,'/') FROM `socials` WHERE 1 LIMIT 0, 30' at line 1
那么有什么方法可以使这样的 sql 查询与 MySql 一起使用