SOFTELメモ Developer's blog

【MySQL】#1305 - FUNCTION concat does not exists

2010/10/28 MySQL

問題

SQLのエラーが出ました。

SELECT CONCAT ('abc', 'def') FROM xxx;
→ ERROR 1305 (42000): FUNCTION xxxxdb.CONCAT does not exist

答え

CONCAT と ( の間に、半角スペースが入ってないですか?

他にも

LEFT does not exists
IFNULL does not exists

などバリエーションあります。

関連するメモ

コメント