Coba gunakan ekspresi reguler:
SELECT
*
FROM
`table`
WHERE
Description regexp '(^|[[:space:]])pen([[:space:]]|$)';
Demo
Atau gunakan batas kata :
SELECT
*
FROM
`table`
WHERE
Description regexp '[[:<:]]pen[[:>:]]';
Coba gunakan ekspresi reguler:
SELECT
*
FROM
`table`
WHERE
Description regexp '(^|[[:space:]])pen([[:space:]]|$)';
Atau gunakan batas kata :
SELECT
*
FROM
`table`
WHERE
Description regexp '[[:<:]]pen[[:>:]]';