In Select query I'm using ucfirst for getting character in caps.
My Select Query:
SELECT det.Id AS id,
ucfirst(det.title) AS title,
DATE_FORMAT((det.dateInt), '%M %d, %Y') AS dateint
FROM img_details det
ORDER BY Id DESC
When I'm using this query in Mysql it is showing error like:
FUNCTION admin.ucfirst does not exist.
Please give any suggestions.Thanks in Advance.