MYSQL Tutorial: UNIX Timestamp and date conversion functions

Source: Internet
Author: User
Tags mysql tutorial timestamp to date

MYSQL Tutorial: UNIX Timestamp and date conversion function tip: UNIX timestamp to date using the function: FROM_UNIXTIME (), date to UNIX timestamp using the function: UNIX_TIMESTAMP (). function for converting UNIX timestamp to date: FROM_UNIXTIME () select FROM_UNIXTIME (1156219870); function for converting date to UNIX timestamp: UNIX_TIMESTAMP () select UNIX_TIMESTAMP ('2017-11-04 12:23:00 '); example: number of records queried by mysql on the current day: $ SQL = "select * from message Where DATE_FORMAT (FROM_UNIXTIME (chattime ), '% Y-% m-% D') = DATE_FORMAT (NOW (),' % Y-% m-% D') order by id desc "; of course, you can also choose to convert the UNIX timestamp into a date in PHP using the function: date () date ('Y-m-d H: I: s', 1156219870 ); function used to convert a date to a UNIX timestamp: strtotime () strtotime ('2017-03-24 08:15:42 ');

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.