Esercitazione MySQL

MySQL HOME Introduzione a MySQL MySQL RDBMS

MySQL SQL

MySQL SQL SELEZIONA MySQL MySQL DOVE MySQL E, O, NON MySQL ORDINA PER MySQL INSERT IN Valori NULL MySQL AGGIORNAMENTO MySQL MySQL DELETE LIMITE MySQL MySQL MIN e MAX MySQL COUNT, MEDIO, SOMMA MySQL MI PIACE Caratteri jolly MySQL MySQL IN MySQL TRA alias MySQL MySQL si unisce MySQL INNER JIN MySQL ha lasciato il join MySQL GIUSTO UNISCITI MySQL CROSS JIN MySQL Self Join MySQL UNION MySQL GRUPPO PER MySQL AVENDO MySQL ESISTE MySQL QUALSIASI, TUTTO SELEZIONA INSERTO MySQL CASO MySQL Funzioni null di MySQL Commenti MySQL Operatori MySQL

Database MySQL

MySQL Crea DB MySQL Drop DB MySQL Crea tabella MySQL Drop Table MySQL Alter tabella Vincoli MySQL MySQL non nullo MySQL unico Chiave primaria MySQL Chiave esterna MySQL Controllo MySQL MySQL predefinito MySQL Crea indice Incremento automatico di MySQL Date MySQL Viste MySQL

Riferimenti MySQL

Tipi di dati MySQL Funzioni MySQL

Esempi MySQL

Esempi MySQL Quiz MySQL Esercizi MySQL

MySQL SUBSTRING_INDEX() Funzione

❮ Funzioni MySQL

Esempio

Restituisce una sottostringa di una stringa prima che si verifichi un numero specificato di delimitatori:

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

Definizione e utilizzo

La funzione SUBSTRING_INDEX() restituisce una sottostringa di una stringa prima che si verifichi un numero specificato di delimitatori.

Sintassi

SUBSTRING_INDEX(string, delimiter, number)

Valori dei parametri

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.

Dettagli tecnici

Funziona in: Da MySQL 4.0

Altri esempi

Esempio

Restituisce una sottostringa di una stringa prima che si verifichi un numero specificato di delimitatori:

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

❮ Funzioni MySQL