Mysql time conversion, mysql Conversion

Source: Internet
Author: User
Tags timestamp to date

Mysql time conversion, mysql Conversion

Function for converting UNIX timestamp to date: FROM_UNIXTIME ()

Select FROM_UNIXTIME (1156219870 );

Date to UNIX timestamp function: UNIX_TIMESTAMP ()

Select UNIX_TIMESTAMP ('2017-11-04 12:23:00 ′);

For example, the 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 switch in PHP.

UNIX timestamp to date function: date ()

Date ('Y-m-d H: I: s', 1156219870 );

Date to UNIX timestamp function: strtotime ()

Strtotime ('2017-03-24 08:15:42 ');

Related Article

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.