MySQL 5.5.15 を使用して文字列を作成しようとしていますが、2 つ以上の引数では機能しないようです:
mysql> select concat(id, name) as me from locations; # this works
mysql> select concat(id, name, website) as me from locations; # doesn't work
いくつかの例には 2 つ以上の引数がありますが、うまくいかないようです。それはうまくいくはずですか?