+1 vote
in I have a screenshot by (4.6k points)

When I tried to execute this command in phpMyAdmin, it gave this error message:

SELECT SUBSTRING ('San Antonio, TX', 5, 3);

#1630 - FUNCTION head_first.SUBSTRING does not exist. Check the 'Function Name Parsing and Resolution' section in the Reference Manual

1 Answer

0 votes
by (21.2k points)
edited by
 
Best answer

The solution is simple and universal: remove the space between the functioin SUBSTRING and (), like this:

SELECT SUBSTRING('San Antonio, TX', 5, 3);

Welcome to Best solution for PC & Software errors, where you can ask questions and receive answers from other members of the community.
...