• mySql使用手册-官方文档


    https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format

    oracle to_char()to_date()函数 mysql日期和字符相互转换方法

    mysql 类似to_char() to_date()函数
      mysql日期和字符相互转换方法
      date_format(date,'%Y-%m-%d') -------------->oracle中的to_char();
      str_to_date(date,'%Y-%m-%d') -------------->oracle中的to_date();
      %Y:代表4位的年份
      %y:代表2为的年份
      %m:代表月, 格式为(01……12)
      %c:代表月, 格式为(1……12)
      %d:代表月份中的天数,格式为(00……31)
      %e:代表月份中的天数, 格式为(0……31)
      %H:代表小时,格式为(00……23)
      %k:代表 小时,格式为(0……23)
      %h: 代表小时,格式为(01……12)
      %I: 代表小时,格式为(01……12)
      %l :代表小时,格式为(1……12)
      %i: 代表分钟, 格式为(00……59)
      %r:代表 时间,格式为12 小时(hh:mm:ss [AP]M)
      %T:代表 时间,格式为24 小时(hh:mm:ss)
      %S:代表 秒,格式为(00……59)
      %s:代表 秒,格式为(00……59)
      SELECT DATE_FORMAT(20130111191640,'%Y-%m-%d %H:%i:%s')
      DATE_FORMAT(20130111191640,'%Y-%m-%d %H:%i:%s')
    ————————————————
    版权声明:本文为CSDN博主「coco爱火女」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/u011424470/article/details/79637978

  • 相关阅读:
    IntentService源码分析
    startService过程源码分析
    洛谷P3300 城市规划
    agc033
    洛谷P3306 随机数生成器
    洛谷P3299 保护出题人
    洛谷P3298 泉
    洛谷P3296 刺客信条
    树hash
    我们都爱膜您退火!
  • 原文地址:https://www.cnblogs.com/yuhuameng/p/11490411.html
Copyright © 2020-2023  润新知