Alle tekens selecteren behalve de laatste n uit een string (of anders gezegd, verwijder laatste n tekens uit een string); gebruik de SUBSTRING
en CHAR_LENGTH
functies samen:
SELECT col
, /* ANSI Syntax */ SUBSTRING(col FROM 1 FOR CHAR_LENGTH(col) - 2) AS col_trimmed
, /* MySQL Syntax */ SUBSTRING(col, 1, CHAR_LENGTH(col) - 2) AS col_trimmed
FROM tbl
Om een specifieke subtekenreeks aan het einde van de tekenreeks te verwijderen, gebruikt u de TRIM
functie:
SELECT col
, TRIM(TRAILING '.php' FROM col)
-- index.php becomes index
-- index.php.php becomes index (!)
-- index.txt remains index.txt