MySQL 日期时间函数常用总结

yipeiwu_com6年前Mysql基础

 获得当前日期+时间(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 天

    相关文章

    PHP Mysql编程之高级技巧

    笔者做了以下的尝试。 <?php  $data_time="1998-12-31 23:59:59";  $connect_id=mysql_connect...

    PHP使用Mysqli类库实现完美分页效果的方法

    PHP使用Mysqli类库实现完美分页效果的方法

    本文实例讲述了PHP使用Mysqli类库实现完美分页效果的方法。分享给大家供大家参考,具体如下: 本篇文章是基于的是我的上篇文章《PHP数据库操作之基于Mysqli的数据库操作类库》而量...

    How do I change MySQL timezone?

    However, there are ways for you to get results t...

    php提示Warning:mysql_fetch_array() expects的解决方法

    本文实例讲述了php提示Warning mysql_fetch_array() expects的解决方法,分享给大家供大家参考。具体分析如下: 在mysql数据库连接时碰到Warning...

    PHP mysqli_free_result()与mysqli_fetch_array()函数详解

    PHP mysqli_free_result()与mysqli_fetch_array()函数 mysql_free_result() 仅需要在考虑到返回很大的结果集时会占用多少内存时调...