<tfoot id='nc9o7'></tfoot>

    <i id='nc9o7'><tr id='nc9o7'><dt id='nc9o7'><q id='nc9o7'><span id='nc9o7'><b id='nc9o7'><form id='nc9o7'><ins id='nc9o7'></ins><ul id='nc9o7'></ul><sub id='nc9o7'></sub></form><legend id='nc9o7'></legend><bdo id='nc9o7'><pre id='nc9o7'><center id='nc9o7'></center></pre></bdo></b><th id='nc9o7'></th></span></q></dt></tr></i><div id='nc9o7'><tfoot id='nc9o7'></tfoot><dl id='nc9o7'><fieldset id='nc9o7'></fieldset></dl></div>
  1. <small id='nc9o7'></small><noframes id='nc9o7'>

    • <bdo id='nc9o7'></bdo><ul id='nc9o7'></ul>
    1. <legend id='nc9o7'><style id='nc9o7'><dir id='nc9o7'><q id='nc9o7'></q></dir></style></legend>

      SQL 中日期时间字段的时间部分

      Time part of a DateTime Field in SQL(SQL 中日期时间字段的时间部分)

        • <bdo id='xi1Jm'></bdo><ul id='xi1Jm'></ul>

            <small id='xi1Jm'></small><noframes id='xi1Jm'>

          • <i id='xi1Jm'><tr id='xi1Jm'><dt id='xi1Jm'><q id='xi1Jm'><span id='xi1Jm'><b id='xi1Jm'><form id='xi1Jm'><ins id='xi1Jm'></ins><ul id='xi1Jm'></ul><sub id='xi1Jm'></sub></form><legend id='xi1Jm'></legend><bdo id='xi1Jm'><pre id='xi1Jm'><center id='xi1Jm'></center></pre></bdo></b><th id='xi1Jm'></th></span></q></dt></tr></i><div id='xi1Jm'><tfoot id='xi1Jm'></tfoot><dl id='xi1Jm'><fieldset id='xi1Jm'></fieldset></dl></div>
              <tbody id='xi1Jm'></tbody>

            <legend id='xi1Jm'><style id='xi1Jm'><dir id='xi1Jm'><q id='xi1Jm'></q></dir></style></legend>
              1. <tfoot id='xi1Jm'></tfoot>
                本文介绍了SQL 中日期时间字段的时间部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何在 SQL 中提取 DateTime 字段的时间部分?对于我的项目,无论日期是什么,我都必须返回时间戳为 DateTime 字段下午 5 点的数据

                How would I be able to extract the time part of a DateTime field in SQL? For my project I have to return data that has a timestamp of 5pm of a DateTime field no matter what the date is

                推荐答案

                在SQL Server中如果你只需要hh:mi,可以使用:

                In SQL Server if you need only the hh:mi, you can use:

                DECLARE @datetime datetime
                
                SELECT @datetime = GETDATE()
                
                SELECT RIGHT('0'+CAST(DATEPART(hour, @datetime) as varchar(2)),2) + ':' +
                       RIGHT('0'+CAST(DATEPART(minute, @datetime)as varchar(2)),2)
                

                这篇关于SQL 中日期时间字段的时间部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Building a comma separated list?(建立一个逗号分隔的列表?)
                Errors in SQL Server while importing CSV file despite varchar(MAX) being used for each column(尽管每列都使用了 varchar(MAX),但在导入 CSV 文件时 SQL Server 中出现错误)
                How can I import an Excel file into SQL Server?(如何将 Excel 文件导入 SQL Server?)
                Export table to file with column headers (column names) using the bcp utility and SQL Server 2008(使用 bcp 实用程序和 SQL Server 2008 将表导出到带有列标题(列名称)的文件)
                Concat field value to string in SQL Server(将字段值连接到 SQL Server 中的字符串)
                SQL Server Bulk insert of CSV file with inconsistent quotes(SQL Server 批量插入带有不一致引号的 CSV 文件)

                <i id='Gvzkj'><tr id='Gvzkj'><dt id='Gvzkj'><q id='Gvzkj'><span id='Gvzkj'><b id='Gvzkj'><form id='Gvzkj'><ins id='Gvzkj'></ins><ul id='Gvzkj'></ul><sub id='Gvzkj'></sub></form><legend id='Gvzkj'></legend><bdo id='Gvzkj'><pre id='Gvzkj'><center id='Gvzkj'></center></pre></bdo></b><th id='Gvzkj'></th></span></q></dt></tr></i><div id='Gvzkj'><tfoot id='Gvzkj'></tfoot><dl id='Gvzkj'><fieldset id='Gvzkj'></fieldset></dl></div>
              2. <tfoot id='Gvzkj'></tfoot>
                  • <bdo id='Gvzkj'></bdo><ul id='Gvzkj'></ul>
                  • <small id='Gvzkj'></small><noframes id='Gvzkj'>

                        1. <legend id='Gvzkj'><style id='Gvzkj'><dir id='Gvzkj'><q id='Gvzkj'></q></dir></style></legend>
                            <tbody id='Gvzkj'></tbody>