SECOND |
Seconde |
---|---|
MySQL |
Syntaxe
Second(Date) |
Paramètres
Nom | Description |
---|---|
Date | Ce paramètre permet d'indiquer la date contenant l'expression à traiter |
Description
Cette fonction retourne la partie «seconde» de la date spécifiée.
Exemple
Voici quelques exemples typiques de l'utilisation de cette fonction :
- SELECT "8:13:14 AM =" As Text, Second("8:13:14 AM") As Result UNION
- SELECT "12:34 =" As Text, Second("12:34") As Result UNION
- SELECT "23:12:59 =" As Text, Second("23:12:59") As Result UNION
- SELECT "11:34am =" As Text, Second("11:34am") As Result UNION
- SELECT "11:34:43pm =" As Text, Second("11:34:43pm") As Result
on obtiendra le résultat suivant :
Text | Result |
8:13:14 AM = | 14 |
12:34 = | 0 |
23:12:59 = | 59 |
11:34am = | 0 |
11:34:43pm = | 43 |
Voir également
Article - Les géants de l'informatique - Oracle
Références
MySQL - Référence, Edition Micro Application, Nicolas Rivereau, Antoine Pichot, 2002, ISBN: 2-7429-2560-0, page 932.
MySQL: The definitive guide to using, programming, and administering MySQL 4 databases - Second Edition, Paul Dubois, 2003, ISBN: 0-7357-1212-3, page 827
Dernière mise à jour : Mercredi, le 29 avril 2015