如果按以下格式编写日期:“ 2022-03-10T09:40:44.543Z”,如何在秒内计算持续时间。

发布于 2025-01-18 15:44:26 字数 192 浏览 0 评论 0原文

我刚刚在SQL中导入一个Excel文件,其中包含两个列(“开始date”&“ end Date”)采用以下格式:

"2022-03-10T09:40:44.543Z".

我想计算在secont中表达的差异。日期”和“结束日期”。 请问吗?

我不知道如何进行。

I have just imported in SQL an excel file which contains two columns ("Start Date" & "End Date") with the following format:

"2022-03-10T09:40:44.543Z".

I would like to calculate the difference expressed in second between "Start Date" and "End Date".
Any suggestion please?

I have no idea how to proceed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林很绿却致人迷途 2025-01-25 15:44:26

如果您使用的是SQL Server,您可以尝试DATEDIFF

语法

DATEDIFF(日期部分、开始日期、结束日期)

在您的情况下:

select DATEDIFF(Second,Start_Date,End_Date) as difference;

如果您已将数据存储在文本列上,则可以使用:

select DATEDIFF(Second,  CONVERT(varchar,Start_Date,127), CONVERT(varchar,End_Date,127) ) as difference;

检查 demo< /a> 了解更多详情

请检查 SQL Server 日期样式

If you are using SQL Server you could try DATEDIFF

Syntax

DATEDIFF ( datepart , startdate , enddate )

In your case :

select DATEDIFF(Second,Start_Date,End_Date) as difference;

If you have stored the data on text columns you could use:

select DATEDIFF(Second,  CONVERT(varchar,Start_Date,127), CONVERT(varchar,End_Date,127) ) as difference;

Check demo for more details

Check the SQL Server date styles

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文