<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 中日期时间字段的时间部分

      时间:2023-10-09

        • <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 中日期时间字段的时间部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:具有多列的 SQL Pivot 下一篇:带文件名参数的批量插入

                相关文章

                <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>
              3. <small id='Gvzkj'></small><noframes id='Gvzkj'>

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