如何将一个字段中的日期与另一个字段中的时间相结合 - MS SQL Server

How to combine date from one field with time from another field - MS SQL Server(如何将一个字段中的日期与另一个字段中的时间相结合 - MS SQL Server)
本文介绍了如何将一个字段中的日期与另一个字段中的时间相结合 - MS SQL Server的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我处理的摘录中,我有 2 个 datetime 列.一列存储日期,另一列存储时间,如图所示.

如何查询表以将这两个字段合并为 datetime 类型的 1 列?

日期

2009-03-12 00:00:00.0002009-03-26 00:00:00.0002009-03-26 00:00:00.000

次数

1899-12-30 12:30:00.0001899-12-30 10:00:00.0001899-12-30 10:00:00.000

解决方案

您可以简单地将两者相加.

  • 如果Date 列的时间部分 始终为零
  • Time 列的Date part 也始终为零(基准日期:1900 年 1 月 1 日)

添加它们返回正确的结果.

SELECT Combined = MyDate + MyTime FROM MyTable

基本原理(感谢ErikE/dnolan)

<块引用>

由于日期存储为两个 4 字节的方式,它是这样工作的Integers 左边的 4 个字节是 date 右边的4 字节是 time.就像做 $0001 0000 + $0000 0001 =$0001 0001

编辑关于新的SQLServer2008类型

DateTimeSQL Server 2008 中引入的类型.如果坚持要添加,可以使用Combined = CAST(MyDate AS DATETIME) + CAST(MyTime AS DATETIME)

关于SQLServer2008及更高版本精度损失的Edit2(向MartinSmith致敬)

看看如何将日期和时间与 SQL Server 中的 datetime2 结合起来? 以防止使用 SQL Server 2008 及更高版本时精度损失.

In an extract I am dealing with, I have 2 datetime columns. One column stores the dates and another the times as shown.

How can I query the table to combine these two fields into 1 column of type datetime?

Dates

2009-03-12 00:00:00.000
2009-03-26 00:00:00.000
2009-03-26 00:00:00.000

Times

1899-12-30 12:30:00.000
1899-12-30 10:00:00.000
1899-12-30 10:00:00.000

解决方案

You can simply add the two.

  • if the Time part of your Date column is always zero
  • and the Date part of your Time column is also always zero (base date: January 1, 1900)

Adding them returns the correct result.

SELECT Combined = MyDate + MyTime FROM MyTable

Rationale(kudostoErikE/dnolan)

It works like this due to the way the date is stored as two 4-byte Integers with the left 4-bytes being the date and the right 4-bytes being the time. Its like doing $0001 0000 + $0000 0001 = $0001 0001

EditregardingnewSQLServer2008types

Date and Time are types introduced in SQL Server 2008. If you insist on adding, you can use Combined = CAST(MyDate AS DATETIME) + CAST(MyTime AS DATETIME)

Edit2regardinglossofprecisioninSQLServer2008andup(kudostoMartinSmith)

Have a look at How to combine date and time to datetime2 in SQL Server? to prevent loss of precision using SQL Server 2008 and up.

这篇关于如何将一个字段中的日期与另一个字段中的时间相结合 - MS SQL Server的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)