SELECT count(isbn) AS NbreRep ,MATCH(titre,cat_niv_2) AGAINST('+Lucile*+Ahrweiller*' IN BOOLEAN MODE) AS score FROM ad_isbn WHERE actif = 'oui' AND ( MATCH(titre,cat_niv_2) AGAINST('+Lucile*+Ahrweiller*' IN BOOLEAN MODE) OR isbn='Lucile Ahrweiller' OR auteur LIKE '%Lucile Ahrweiller%' OR illustrateur LIKE '%Lucile Ahrweiller%' OR editeur LIKE '%Lucile Ahrweiller%' OR collection LIKE '%Lucile Ahrweiller%' OR cat_niv_2 LIKE '%Lucile Ahrweiller%' OR cat_niv_3 LIKE '%Lucile Ahrweiller%' ) ORDER BY score DESC ;