zoukankan      html  css  js  c++  java
  • SQL CONVERT() 时间转字符串

    CONVERT(varchar,event_time,120) as event_time

    ValueDescription
    data_type Required. The datatype to convert expression to. Can be one of the following: bigint, int, smallint, tinyint, bit, decimal, numeric, money, smallmoney, float, real, datetime, smalldatetime, char, varchar, text, nchar, nvarchar, ntext, binary, varbinary, or image
    (length) Optional. The length of the resulting data type (for char, varchar, nchar, nvarchar, binary and varbinary)
    expression Required. The value to convert to another data type
    style Optional. The format used to convert between data types, such as a date or string format. Can be one of the following values:

    Converting datetime to character:
    Without centuryWith centuryInput/OutputStandard
    0 100 mon dd yyyy hh:miAM/PM Default
    1 101 mm/dd/yyyy US
    2 102  yyyy.mm.dd ANSI
    3 103  dd/mm/yyyy British/French
    4 104 dd.mm.yyyy German
    5 105  dd-mm-yyyy Italian
    6 106 dd mon yyyy -
    7 107 Mon dd, yyyy -
    8 108 hh:mm:ss -
    9 109 mon dd yyyy hh:mi:ss:mmmAM (or PM) Default + millisec
    10 110 mm-dd-yyyy USA
    11 111  yyyy/mm/dd Japan
    12 112  yyyymmdd ISO
    13 113 dd mon yyyy hh:mi:ss:mmm Europe (24 hour clock)>
    14 114 hh:mi:ss:mmm 24 hour clock
    20 120 yyyy-mm-dd hh:mi:ss ODBC canonical (24 hour clock)
    21 121 yyyy-mm-dd hh:mi:ss.mmm ODBC canonical (24 hour clock)
      126 yyyy-mm-ddThh:mi:ss.mmm ISO8601
      127 yyyy-mm-ddThh:mi:ss.mmmZ ISO8601 (with time zone Z)
      130 dd mon yyyy hh:mi:ss:mmmAM Hijiri
      131 dd/mm/yy hh:mi:ss:mmmAM Hijiri
    Converting float to real:
    ValueExplanation
    0 Maximum 6 digits (default)
    1 8 digits
    2 16 digits
    Converting money to character:
    ValueExplanation
    0 No comma delimiters, 2 digits to the right of decimal
    1 Comma delimiters, 2 digits to the right of decimal
    2  No comma delimiters, 4 digits to the right of decimal
  • 相关阅读:
    Ruby向Java发起挑战,红色风暴来了吗?
    学习语义网的好书
    Joel给计算机系学生们七条免费的建议
    ruby rails: 一个高开发效率的web开发框架
    推荐:《真正的执行》
    每个java程序员都应该看看Jakarta Commons
    上海IT俱乐部论坛开通了!
    重构的三个层次
    一些蔡志忠先生的漫画书!
    pythonchanllenge: 解决迷题,非常有趣的学习python的方式
  • 原文地址:https://www.cnblogs.com/z45281625/p/12084683.html
Copyright © 2011-2022 走看看