Problem: Receive either “1630: FUNCTION MAX does not exist. Check the ‘Function Name Parsing and Resolution’ section in the Reference Manual” or “1305: FUNCTION MAX does not exist”.
Solution: Remove all spaces between the function and the parenthesis or set sql_mode=’IGNORE_SPACE’;
This is causing the error:
SELECT MAX (id) as something FROM Example
This will work correctly:
SELECT MAX(id) as something FROM Example
Thank you for this article. I found help on this after a google search. Thanks.
It didn’t work for me, there are no spaces between my function and the parenthesis. What else could be causing the error message?
Here’s my Script:
SELECT e.id as id, e.full_name as name,
ufn_property(e.id, 85) as rol,
ETC…
”””lll
it works tnks
No dejes espacio entre MAX y (id), se soluciona asi MAX(id)
Thanks..
Here works \o/
Çok faydalı yazılar paylaşıyorsun teşekkür
It’s Works. Thanks
Paylaşımlarınızı ilgiyle takip ediyorum
Hello blogger, i must say you have high quality content here.
Your page should go viral. You need initial traffic only.
How to get it? Search for; Mertiso’s tips go viral
I have noticed you don’t monetize your website, don’t
waste your traffic, you can earn additional cash every month because you’ve
got hi quality content. If you want to know how to make extra bucks, search
for: Mrdalekjd methods for $$$
nice
Hi, found this link on google. this works. thanks!
Thanks, This solution works totally:)
Thanks it help me
Are you sure that it’s working? For me is the same with and without spaces (not working)