MySQL RIGHT() Functie
Voorbeeld
Extraheer 4 karakters uit een string (van rechts beginnend):
SELECT RIGHT("SQL Tutorial is cool", 4) AS ExtractString;
Definitie en gebruik
De functie RIGHT() extraheert een aantal tekens uit een string (beginnend vanaf rechts).
Tip: Kijk ook naar de LEFT() functie.
Syntaxis
RIGHT(string, number_of_chars)
Parameterwaarden
Parameter | Description |
---|---|
string | Required. The string to extract from |
number_of_chars | Required. The number of characters to extract. If this parameter is larger than the number of characters in string, this function will return string |
Technische details
Werkt in: | Van MySQL 4.0 |
---|
Meer voorbeelden
Voorbeeld
Extraheer 5 tekens uit de tekst in de kolom "Klantnaam" (van rechts beginnend):
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;