Tutoriel MySQL

ACCUEIL MySQL Introduction à MySQL SGBDR MySQL

SQL MySQL

SQL MySQL MySQL SÉLECTIONNER MySQL OÙ MySQL ET, OU, PAS MySQL ORDRE PAR MySQL INSÉRER DANS Valeurs NULL MySQL MISE À JOUR MySQL SUPPRIMER MySQL LIMITE MySQL MySQL MIN et MAX MySQL COUNT, AVG, SOMME MySQL J'AIME Caractères génériques MySQL MySQL IN MySQL ENTRE Alias ​​MySQL MySQL rejoint JOINTURE INTERNE MySQL JOINTURE GAUCHE MySQL MySQL RIGHT JOIN JOINTURE CROISÉE MySQL Rejoindre MySQL UNION MySQL GROUPER PAR MySQL MySQL AYANT MySQL EXISTE MySQL TOUT, TOUS MySQL INSÉRER SÉLECTIONNER CAS MySQL Fonctions nulles MySQL Commentaires MySQL Opérateurs MySQL

Base de données MySQL

Créer une base de données MySQL Base de données de dépôt MySQL Créer une table MySQL Table de dépôt MySQL Table de modification MySQL Contraintes MySQL MySQL non nul MySQL unique Clé primaire MySQL Clé étrangère MySQL Vérification MySQL MySQL par défaut Créer un index MySQL Incrémentation automatique de MySQL Dates MySQL Vues MySQL

Références MySQL

Types de données MySQL Fonctions MySQL

Exemples MySQL

Exemples MySQL Questionnaire MySQL Exercices MySQL

Fonction MySQL SUBSTR()

❮ Fonctions MySQL

Exemple

Extrayez une sous-chaîne d'une chaîne (commencez à la position 5, extrayez 3 caractères) :

SELECT SUBSTR("SQL Tutorial", 5, 3) AS ExtractString;

Définition et utilisation

La fonction SUBSTR() extrait une sous-chaîne d'une chaîne (en commençant à n'importe quelle position).

Remarque : Les fonctions SUBSTR() et MID() sont équivalentes à la fonction SUBSTRING() .

Syntaxe

SUBSTR(string, start, length)

OU:

SUBSTR(string FROM start FOR length)

Valeurs des paramètres

Parameter Description
string Required. The string to extract from
start Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string
length Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position)

Détails techniques

Travaille dans: Depuis MySQL 4.0

Plus d'exemples

Exemple

Extrayez une sous-chaîne du texte d'une colonne (commencez à la position 2, extrayez 5 caractères) :

SELECT SUBSTR(CustomerName, 2, 5) AS ExtractString
FROM Customers;

Exemple

Extraire une sous-chaîne d'une chaîne (commencer à la fin, à la position -5, extraire 5 caractères) :

SELECT SUBSTR("SQL Tutorial", -5, 5) AS ExtractString;

❮ Fonctions MySQL