次のクエリは、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で動作させる方法はありますか