I’m trying to return all rows that contain a substring in mysql
and here is my code
SELECT Last_Name, Midle_Name, First_Name, Phone_home
FROM contact_info
LOCATE (@prefixText, Last_Name)
but I’m getting an error.
please help me with the correct syntax for LOCATE in my case.
Thank you
You need a WHERE clause: