MySQL -TIME_FORMAT()- Funktion
Beispiel
Zeit formatieren:
SELECT TIME_FORMAT("19:30:10", "%H %i %s");
Definition und Verwendung
Die Funktion TIME_FORMAT() formatiert eine Uhrzeit in einem bestimmten Format.
Syntax
TIME_FORMAT(time, format)
Parameterwerte
Parameter | Description | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
time | Required. The time to be formatted | ||||||||||||||||||||||
format | Required. The format to use. Can be one or a
combination of the following:
|
Technische Details
Arbeitet in: | Ab MySQL 4.0 |
---|
Mehr Beispiele
Beispiel
Zeit formatieren:
SELECT TIME_FORMAT("19:30:10", "%h %i %s %p");
Beispiel
Zeit formatieren:
SELECT TIME_FORMAT("19:30:10", "%r");
Beispiel
Zeit formatieren:
SELECT TIME_FORMAT("19:30:10", "%T");