Efficient MySQL Searches with LIKE and FULLTEXT Wildcards
Using MySQL wildcards can significantly improve your database searches. This article highlights how to utilize LIKE and FULLTEXT wildcards for efficient querying.
The LIKE Wildcard
SELECT *
FROM [your_table]
WHERE [your_column] LIKE 'string%';
% m...
thetable.hashnode.dev1 min read