MySQL Tutorial/Date Time Functions/UTC TIMESTAMP — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 09:50, 26 мая 2010
UTC_TIMESTAMP() returns the current UTC date and time.
The format is in "YYYY-MM-DD HH:MM:SS" or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context.
mysql>
mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;
+---------------------+-----------------------+
| UTC_TIMESTAMP() | UTC_TIMESTAMP() + 0 |
+---------------------+-----------------------+
| 2007-07-23 02:46:23 | 20070723024623.000000 |
+---------------------+-----------------------+
1 row in set (0.00 sec)
mysql>