【MySQL】#1305 – FUNCTION concat does not exists
問題
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
などバリエーションあります。
コメント