gpt4 book ai didi

sql - 可以组合日期和时间并存储为日期时间格式

转载 作者:搜寻专家 更新时间:2023-10-30 21:55:39 24 4
gpt4 key购买 nike

这是我正在尝试的

CREATE TABLE #date (dt datetime)    
declare @date Date ='2019-01-29',
@time time='11:06:31.095',

INSERT INTO #date
SELECT CONVERT(NVARCHAR,CONVERT(NVARCHAR,@date)+' '+CONVERT(NVARCHAR,@time))

它给出了错误:

Conversion failed when converting date and/or time from character string.

最佳答案

SQL Server 允许您添加 datetime 值,因此您可以:

select convert(datetime, @date) + convert(datetime, @time)

关于sql - 可以组合日期和时间并存储为日期时间格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54480163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com