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

Funzione MySQL INSERT()

❮ Funzioni MySQL

Esempio

Inserisci la stringa "Example" nella stringa "W3Schools.com". Sostituisci i primi nove caratteri:

SELECT INSERT("W3Schools.com", 1, 9, "Example");

Definizione e utilizzo

La funzione INSERT() inserisce una stringa all'interno di una stringa nella posizione specificata e per un certo numero di caratteri.

Sintassi

INSERT(string, position, number, string2)

Valori dei parametri

Parameter Description
string Required. The string that will be modified
position Required. The position where to insert string2
number Required. The number of characters to replace
string2 Required. The string to insert into string

Valori di ritorno

  • Se position è al di fuori della lunghezza di string , questa funzione restituisce string
  • Se numero è maggiore della lunghezza del resto della stringa , questa funzione sostituisce string dalla posizione fino alla fine della stringa

Dettagli tecnici

Funziona in: Da MySQL 4.0

Altri esempi

Esempio

Inserisci la stringa "no" nella stringa "W3Schools.com". Sostituisci tre caratteri, a partire dalla posizione 11:

SELECT INSERT("W3Schools.com", 11, 3, "no");

❮ Funzioni MySQL