Jump to content

[SOLVED] ERROR 1305 (42000): FUNCTION dotproject.EFT does not exist


stockton

Recommended Posts

Please tell me what "ERROR 1305 (42000): FUNCTION dotproject.EFT does not exist" produced by the following means & how I fix it.

mysql> SELECT LEFT(project_name,50) AS 'Project',
    ->   /*== Decode Project Status == */
    ->   CASE  project_status
    ->   WHEN 1 THEN LEFT('Incoming/Approval',20)
    ->   WHEN 2 THEN LEFT ('Planning',20)
    ->   WHEN 3 THEN LEFT('In Progress',20)
    ->   WHEN 4 THEN LEFT('QC/UAT',20)
    ->   WHEN 5 THEN LEFT('Complete',20)
    ->   WHEN 6 THEN LEFT('On Hold',20)
    ->   WHEN 7 THEN  EFT('Archived',20)
    ->   END AS 'Status'
    -> from projects;
ERROR 1305 (42000): FUNCTION dotproject.EFT does not exist

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.