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

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

      1. 如何在 TSQL 中将分钟数转换为 hh:mm 格式?

        时间:2023-10-09

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

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

                  <tbody id='AvMV8'></tbody>
                <tfoot id='AvMV8'></tfoot>
                <legend id='AvMV8'><style id='AvMV8'><dir id='AvMV8'><q id='AvMV8'></q></dir></style></legend>
                  本文介绍了如何在 TSQL 中将分钟数转换为 hh:mm 格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个选择查询,它有 DURATION 列来计算 Minutes 的数量.我想将这些分钟转换为 hh:mm 格式.

                  I have a select query that has DURATION column to calculate number of Minutes . I want to convert those minutes to hh:mm format.

                  Duration 的值类似于 60, 120,150

                  Duration has values like 60, 120,150

                  例如:

                  60 变为 01:00 小时

                  120 变为 02:00 小时

                  150 变为 02:30 小时

                  此外,这就是我检索DURATION(分钟)的方式

                  Also, this is how I retrieve DURATION (Minutes)

                  DATEDIFF(minute, FirstDate,LastDate) as 'Duration (Minutes)'
                  

                  推荐答案

                  您可以将持续时间转换为日期,然后对其进行格式化:

                  You can convert the duration to a date and then format it:

                  DECLARE
                      @FirstDate datetime,
                      @LastDate datetime
                  
                  SELECT
                      @FirstDate = '2000-01-01 09:00:00',
                      @LastDate = '2000-01-01 11:30:00'
                  
                  SELECT CONVERT(varchar(12), 
                         DATEADD(minute, DATEDIFF(minute, @FirstDate, @LastDate), 0), 114) 
                  
                  /* Results: 02:30:00:000 */
                  

                  为了降低精度,修改varchar的大小:

                  For less precision, modify the size of the varchar:

                  SELECT CONVERT(varchar(5), 
                         DATEADD(minute, DATEDIFF(minute, @FirstDate, @LastDate), 0), 114) 
                  
                  /* Results: 02:30 */
                  

                  这篇关于如何在 TSQL 中将分钟数转换为 hh:mm 格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 SQL Server 2008 中跨多个表、列使用全文搜索 下一篇:具有多列的 SQL Pivot

                  相关文章

                • <legend id='cOMTd'><style id='cOMTd'><dir id='cOMTd'><q id='cOMTd'></q></dir></style></legend>
                      <bdo id='cOMTd'></bdo><ul id='cOMTd'></ul>

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

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