Learn mysql date formatting functions DATE_FORMAT, FROM_UNIXTIME, UNIX_TIME

WBOY
Release: 2016-07-25 09:04:22
Original
1438 people have browsed it
  1. DATE_FORMAT(NOW(),'%b %d %Y %h:%i %p')
  2. DATE_FORMAT(NOW(),'%m-%d-%Y')
  3. DATE_FORMAT(NOW( ),'%d %b %y')
  4. DATE_FORMAT(NOW(),'%d %b %Y %T:%f')
Copy the code

The result is similar: Dec 29 2008 11:45 PM 12-29-2008 29 Dec 08 29 Dec 2008 16:25:46

2. Date and time functions FROM_UNIXTIME(), UNIX_TIME()... in MySQL database Example: date => int(11)

  1. SELECT FROM_UNIXTIME(date, '%Y-%c-%d %h:%i:%s' ) as post_date ,
  2. date_format(NOW(), '%Y-%c-%d % h:%i:%s' ) as post_date_gmt
  3. FROM `article` where outkey = 'Y'
Copy code

1, FROM_UNIXTIME( unix_timestamp ) Parameter: usually a ten-digit number, such as: 1344887103 Return value: There are two types, it may be a string like 'YYYY-MM-DD HH:MM:SS', or it may be a number like YYYYMMDDHHMMSS.uuuuuu. What is returned depends on the form in which the function is called. .

  1. mysql> select FROM_UNIXTIME(1344887103);
  2. +--------------------------+
  3. | FROM_UNIXTIME(1344887103) |
  4. +--------------------------+
  5. | 2012-08-14 03:45:03 |
  6. +---- -----------------------+
  7. 1 row in set (0.00 sec)
Copy code

2, FROM_UNIXTIME( unix_timestamp , format ) Parameter unix_timestamp: has the same meaning as the parameter in method FROM_UNIXTIME( unix_timestamp); Parameter format: the format for displaying the time string after conversion; Return value: a string displayed in the specified time format;

  1. mysql> select FROM_UNIXTIME(1344887103,'%Y-%M-%D %h:%i:%s');
  2. +-------------- --------------------------------+
  3. | FROM_UNIXTIME(1344887103,'%Y-%M-%D %h :%i:%s') |
  4. +--------------------------------------- --------+
  5. | 2012-August-14th 03:45:03 |
  6. +-------------------------- ---------------------+
  7. 1 row in set (0.00 sec)
  8. mysql> select FROM_UNIXTIME(1344887103,'%Y-%m-%D %h :%i:%s');
  9. +--------------------------------------- --------+
  10. | FROM_UNIXTIME(1344887103,'%Y-%m-%D %h:%i:%s') |
  11. +------------- ----------------------------------+
  12. | 2012-08-14th 03:45:03 |
  13. + --------------------------------------------------+
  14. 1 row in set (0.00 sec)
Copy code

1、UNIX_TIMESTAMP() Return value: UNIX format numeric string of the current time, or UNIX timestamp (the number of seconds starting from UTC time '1970-01-01 00:00:00'), usually ten digits, such as 1344887103.

  1. mysql> select unix_timestamp();
  2. +------------------+
  3. | unix_timestamp() |
  4. +-------- ----------+
  5. | 1344887103 |
  6. +------------------+
  7. 1 row in set (0.00 sec)
Copy code

2、UNIX_TIMESTAMP(date) Parameters: date may be a DATE string, a DATETIME string, a TIMESTAPE string, or a numeric string similar to YYMMDD or YYYYMMDD. Returns: the number of seconds from UTC time '1970-01-01 00:00:00' to this parameter. The server interprets the date parameter as a value in the current time zone and converts it into an internal time in UTC format. The client can set the current time zone by itself. When UNIX_TIMESTAMP() is used on a TIMESTAMP column, the function returns the internal timestamp value directly; if you pass an out-of-range time to UNIX_TIMESTAMP(), its return value is zero.

  1. mysql> SELECT UNIX_TIMESTAMP();
  2. +------------------+
  3. | UNIX_TIMESTAMP() |
  4. +-------- ----------+
  5. | 1344888895 |
  6. +------------------+
  7. 1 row in set (0.00 sec)
  8. mysql> SELECT UNIX_TIMESTAMP('2012-08-14 16:19:23');
  9. +-------------------------------- -------+
  10. | UNIX_TIMESTAMP('2012-08-14 16:19:23') |
  11. +---------------------- ------------------+
  12. |1344932363 |
  13. +-------------------------- -------------+
  14. 1 row in set (0.00 sec)
Copy code

Note: If you use UNIX_TIMESTAMP() and FROM_UNIXTIME() to convert TIMESTAMP values ​​to Unix timestamp values, precision will be lost because the mapping is not one-to-one in both directions. For example, due to local time zone changes, it is possible that two UNIX_TIMESTAMP() will map to the same Unix timestamp value. FROM_UNIXTIME() will only map to the original timestamp value. Here's an example using TIMESTAMP in the CET time zone:

  1. mysql> SELECT UNIX_TIMESTAMP('2005-03-27 03:00:00');
  2. +-------------------------- ----------------+
  3. | UNIX_TIMESTAMP('2005-03-27 03:00:00') |
  4. +------------- --------------------------+
  5. |1111885200 |
  6. +----------------- -----------------------+
  7. mysql> SELECT UNIX_TIMESTAMP('2005-03-27 02:00:00');
  8. +----- ----------------------------------+
  9. | UNIX_TIMESTAMP('2005-03-27 02:00:00 ') |
  10. +---------------------------------------+
  11. |1111885200 |
  12. +---------------------------------------+
  13. mysql> SELECT FROM_UNIXTIME(1111885200);
  14. +--------------------------+
  15. | FROM_UNIXTIME(1111885200) |
  16. +---------- ----------------+
  17. | 2005-03-27 03:00:00 |
  18. +------------------ ---------+
Copy code

Reference link: https://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_unix -timestamp



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!