Prøv at bruge regulære udtryk:
SELECT
*
FROM
`table`
WHERE
Description regexp '(^|[[:space:]])pen([[:space:]]|$)';
Demo
Eller ved at bruge ordgrænser :
SELECT
*
FROM
`table`
WHERE
Description regexp '[[:<:]]pen[[:>:]]';
Prøv at bruge regulære udtryk:
SELECT
*
FROM
`table`
WHERE
Description regexp '(^|[[:space:]])pen([[:space:]]|$)';
Eller ved at bruge ordgrænser :
SELECT
*
FROM
`table`
WHERE
Description regexp '[[:<:]]pen[[:>:]]';