I'm trying to puzzle out how to add a LIKE
to this prepared statement.
SELECT convention_name FROM events_master
WHERE (convention_name = ?);
The goal is to see if the convention name is similar to something that already exists in convention_name
. I do understand that it checks for an exact match already.
Thanks in advance.