Home > php教程 > php手册 > body text

MySQL 日期时间函数常用总结

WBOY
Release: 2016-06-13 12:00:00
Original
903 people have browsed it

 获得当前日期+时间(date + time)1.1    函数:now()

     相关函数:current_timestamp(),localtime(),localtimestamp()

     举例说明:



        2. 获得当前日期(date)

     函数:curdate()

     相关函数:current_date(),current_date

     举例说明:



        3. 获得当前时间(time)

    函数:curtime()

     相关函数:current_time(),current_time

    举例说明


     

        4. MySQL dayof… 

    函数:dayofweek(), dayofmonth(), dayofyear()分别返回日期参数,在一周、一月、一年中的位置。

    举例说明

    set @dt = '2008-08-08';

    select dayofweek(@dt); -- 6

    select dayofmonth(@dt); -- 8

    select dayofyear(@dt); -- 221

    日期‘2008-08-08′ 是一周中的第6 天(1 = Sunday, 2 = Monday, …, 7 = Saturday)

    一月中的第8 天;一年中的第221 天

    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 Recommendations
    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!