MySQL Related Search (title+tags+description)

What you think? What will be the best option to search related videos in mysql videos table with matching title+tags+description? Very easy Idea! # SELECT * FROM `videos` WHERE title LIKE ‘%$title%’ OR tags LIKE ‘%$tags%’ OR description LIKE ‘%$description’; Full-text Search is a feature introduced to MySQL in version 3.23.23. You have to add … Read more