zoukankan      html  css  js  c++  java
  • MYSQL日期 字符串 时间戳互转

    平时比较常用的时间、字符串、时间戳之间的互相转换,虽然常用但是几乎每次使用时候都喜欢去搜索一下用法;本文将作为一个笔记,整理一下三者之间的 转换(即:date转字符串、date转时间戳、字符串转date、字符串转时间戳、时间戳转date,时间戳转字符串)用法,方便日后查看;

    涉及的函数

    date_format(date, format) 函数,MySQL日期格式化函数date_format()

    unix_timestamp() 函数

    str_to_date(str, format) 函数

    from_unixtime(unix_timestamp, format) 函数,MySQL时间戳格式化函数from_unixtime

    时间转字符串

    select date_format(now(), '%Y-%m-%d');  
      
    #结果:2016-01-05  

    时间转时间戳

    select unix_timestamp(now());  
      
    #结果:1452001082  

    字符串转时间

    select str_to_date('2016-01-02', '%Y-%m-%d %H');  
      
    #结果:2016-01-02 00:00:00  

    字符串转时间戳

    select unix_timestamp('2016-01-02');  
      
    #结果:1451664000  

    时间戳转时间

    select from_unixtime(1451997924);  
      
    #结果:2016-01-05 20:45:24  

    时间戳转字符串

    select from_unixtime(1451997924,'%Y-%d');  
      
    //结果:2016-01-05 20:45:24  

    附表

    MySQL日期格式化(format)取值范围。

     含义
    %S、%s 两位数字形式的秒( 00,01, ..., 59)
    %I、%i 两位数字形式的分( 00,01, ..., 59)
    小时  %H 24小时制,两位数形式小时(00,01, ...,23)
    %h 12小时制,两位数形式小时(00,01, ...,12)
    %k 24小时制,数形式小时(0,1, ...,23)
    %l 12小时制,数形式小时(0,1, ...,12)
    %T 24小时制,时间形式(HH:mm:ss)
    %r  12小时制,时间形式(hh:mm:ss AM 或 PM)
    %p  AM上午或PM下午 
      周   %W 一周中每一天的名称(Sunday,Monday, ...,Saturday)
     %a 一周中每一天名称的缩写(Sun,Mon, ...,Sat) 
    %w  以数字形式标识周(0=Sunday,1=Monday, ...,6=Saturday) 
    %U 数字表示周数,星期天为周中第一天
    %u 数字表示周数,星期一为周中第一天
    %d  两位数字表示月中天数(01,02, ...,31)
    %e   数字表示月中天数(1,2, ...,31)
     %D 英文后缀表示月中天数(1st,2nd,3rd ...) 
     %j 以三位数字表示年中天数(001,002, ...,366) 
    %M  英文月名(January,February, ...,December) 
    %b  英文缩写月名(Jan,Feb, ...,Dec) 
    %m  两位数字表示月份(01,02, ...,12)
    %c  数字表示月份(1,2, ...,12) 
    %Y  四位数字表示的年份(2015,2016...)
    %y   两位数字表示的年份(15,16...)
    文字输出  %文字  直接输出文字内容
  • 相关阅读:
    (转载)SAPI 包含sphelper.h编译错误解决方案
    C++11标准的智能指针、野指针、内存泄露的理解(日后还会补充,先浅谈自己的理解)
    504. Base 7(LeetCode)
    242. Valid Anagram(LeetCode)
    169. Majority Element(LeetCode)
    100. Same Tree(LeetCode)
    171. Excel Sheet Column Number(LeetCode)
    168. Excel Sheet Column Title(LeetCode)
    122.Best Time to Buy and Sell Stock II(LeetCode)
    404. Sum of Left Leaves(LeetCode)
  • 原文地址:https://www.cnblogs.com/jiangxiaobo/p/7676674.html
Copyright © 2011-2022 走看看