Mysql
 sql >> Base de données >  >> RDS >> Mysql

Extraire une chaîne de recherche en contexte

Voici le SQL dont vous avez besoin :

SELECT
    id,
    title,
    substring(body,  
        case
             when locate('mysql', lower(body)) <= 20 then 1
             else locate('mysql', lower(body)) - 20
        end,
        case
            when locate('mysql', lower(body)) + 20 > length(body) then length(body)
            else locate('mysql', lower(body)) + 20
        end)
FROM content
WHERE lower(body) LIKE '%mysql%'
    OR title LIKE '%mysql%'
limit 8;

Pour votre information :Testé et fonctionne.