Prova att använda reguljära uttryck:
SELECT
*
FROM
`table`
WHERE
Description regexp '(^|[[:space:]])pen([[:space:]]|$)';
Demo
Eller med ordgränser :
SELECT
*
FROM
`table`
WHERE
Description regexp '[[:<:]]pen[[:>:]]';
Prova att använda reguljära uttryck:
SELECT
*
FROM
`table`
WHERE
Description regexp '(^|[[:space:]])pen([[:space:]]|$)';
Eller med ordgränser :
SELECT
*
FROM
`table`
WHERE
Description regexp '[[:<:]]pen[[:>:]]';