Lets assume i have a query like the following
$query_search = "SELECT * FROM `search` WHERE `title` LIKE '%$word%' OR `content` LIKE '%$word%'";
i need to order rows by count of matches?
is it possible in such structure of database, or i need to redesign it?
Thanks much