MySQL -zelfstudie

MySQL HOME MySQL-intro MySQL RDBMS

MySQL SQL

MySQL SQL MySQL SELECT MySQL WAAR? MySQL EN, OF, NIET MySQL BESTELLEN DOOR MySQL INVOEGEN IN MySQL NULL-waarden MySQL-UPDATE MySQL VERWIJDEREN MySQL-LIMIET MySQL MIN en MAX MySQL-COUNT, AVG, SUM MySQL LIKE MySQL-jokertekens MySQL IN MySQL TUSSEN MySQL-aliassen MySQL wordt lid MySQL INNER JOIN MySQL LEFT JOIN MySQL RECHTS AANMELDEN MySQL CROSS JOIN Zelf lid worden van MySQL MySQL UNION MySQL GROEP DOOR MySQL HEBBEN MySQL BESTAAT MySQL ELK, ALLES MySQL INSERT SELECT MySQL-CASE MySQL Null-functies MySQL-opmerkingen MySQL-operators

MySQL- database

MySQL DB maken MySQL Drop DB MySQL-tabel maken MySQL-droptabel MySQL Wijzig Tabel MySQL-beperkingen MySQL Niet Null MySQL Uniek MySQL primaire sleutel MySQL-buitenlandse sleutel MySQL-controle MySQL-standaard MySQL-index maken MySQL automatisch verhogen MySQL-datums MySQL-weergaven

MySQL- referenties

MySQL-gegevenstypen MySQL-functies

MySQL- voorbeelden

MySQL-voorbeelden MySQL-quiz MySQL-oefeningen

MySQL RIGHT() Functie

❮MySQL-functies

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;

❮MySQL-functies