如果按以下格式编写日期:“ 2022-03-10T09:40:44.543Z”,如何在秒内计算持续时间。
我刚刚在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是
SQL Server
,您可以尝试DATEDIFF在您的情况下:
如果您已将数据存储在文本列上,则可以使用:
检查 demo< /a> 了解更多详情
请检查 SQL Server 日期样式
If you are using
SQL Server
you could try DATEDIFFIn your case :
If you have stored the data on text columns you could use:
Check demo for more details
Check the SQL Server date styles