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

❮ Funzioni MySQL

Esempio

Formatta il numero come "#,###,###.##" (e arrotonda con due cifre decimali):

SELECT FORMAT(250500.5634, 2);

Definizione e utilizzo

La funzione FORMAT() formatta un numero in un formato come "#,###,###.##", arrotondato al numero specificato di cifre decimali, quindi restituisce il risultato come stringa.

Sintassi

FORMAT(number, decimal_places)

Valori dei parametri

Parameter Description
number Required. The number to be formatted
decimal_places Required. The number of decimal places for number. If this parameter is 0, this function returns a string with no decimal places

Dettagli tecnici

Funziona in: Da MySQL 4.0

Altri esempi

Esempio

Formatta il numero come formato "#,###,###.##" (e arrotonda con 0 cifre decimali):

SELECT FORMAT(250500.5634, 0);

❮ Funzioni MySQL