当前位置: 网学 > 编程文档 > MySQL > 正文

MySQL日期时间函数总结

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/08/02
:08:08select timediff('08:08:08', '00:00:00');                       -- 08:08:08注意:timediff(time1,time2) 函数的两个参数类型必须相同。  四、MySQL 日期转换函数、时间转换函数 1. MySQL (时间、秒)转换函数:time_to_sec(time), sec_to_time(seconds)  select time_to_sec('01:00:05');  -- 3605select sec_to_time(3605);        -- '01:00:05'2. MySQL (日期、天数)转换函数:to_days(date), from_days(days)  select to_days('0000-00-00');  -- 0select to_days('2008-08-08');  -- 733627select from_days(0);           -- '0000-00-00'select from_days(733627);      -- '2008-08-08'3. MySQL Str to Date (字符串转换为日期)函数:str_to_date(str, format)  select str_to_date('08/09/2008', '%m/%d/%Y');                   -- 2008-08-09select str_to_date('08/09/08'  , '%m/%d/%y');                   -- 2008-08-09select str_to_date('08.09.2008', '%m.%d.%Y');                   -- 2008-08-09select str_to_date('08:09:30', '%h:%i:%s');                     -- 08:09:30select str_to_date('08.09.2008 08:09:30', '%m.%d.%Y %h:%i:%s'); -- 2008-08-09 08:09:30可以看到,str_to_date(str,format) 转换函数,可以把一些杂乱无章的字符串转换为日期格式。另外,它也可以转换为时间。“format” 可以参看 MySQL 手册。  4. MySQL Date/Time to Str(日期/时间转换为字符串)函数:date_format(date,format), time_format(time,format)  mysql> select date_format('2008-08-08 22:23:00', '%W %M %Y'); +------------------------------------------------+| date_format('2008-08-08 22:23:00', '%W %M %Y') |+------------------------------------------------+| Friday August 2008                             |+------------------------------------------------+mysql> select date_format('2008-08-08 22:23:01', '%Y%m%d%H%i%s'); +----------------------------------------------------+| date_format('2008-08-08 22:23:01', '%Y%m%d%H%i%s') |+----------------------------------------------------+| 20080808222301                                     |+----------------------------------------------------+mysql> select time_format('22:23:01', '%H.%i.%s'); +-------------------------------------+| time_format('22:23:01', '%H.%i.%s') |+-------------------------------------+| 22.23.01                    

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号