I'm trying to return all rows that content 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 error.
please help me with correct syntax for LOCATE in my case. Thank you