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 SUBSTRING_INDEX()

❮ Fonctions MySQL

Exemple

Renvoie une sous-chaîne d'une chaîne avant qu'un nombre spécifié de délimiteurs ne se produise :

SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);

Définition et utilisation

La fonction SUBSTRING_INDEX() renvoie une sous-chaîne d'une chaîne avant qu'un nombre spécifié de délimiteurs ne se produise.

Syntaxe

SUBSTRING_INDEX(string, delimiter, number)

Valeurs des paramètres

Parameter Description
string Required. The original string
delimiter Required. The delimiter to search for
number Required. The number of times to search for the delimiter. Can be both a positive or negative number. If it is a positive number, this function returns all to the left of the delimiter. If it is a negative number, this function returns all to the right of the delimiter.

Détails techniques

Travaille dans: Depuis MySQL 4.0

Plus d'exemples

Exemple

Renvoie une sous-chaîne d'une chaîne avant qu'un nombre spécifié de délimiteurs ne se produise :

SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);

❮ Fonctions MySQL