I have a companies
table that contains several thousands rows and will grow bigger over time. The requirement is to build a search page that will search in title and description fields that are on that table.
I've built a FULLTEXT index and this works well, however I need to be able to search for special characters, for example email addresses if searching for the @
character. Is there a way to achieve this efficiently using MySQL
?