Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert the SQL Server time (2) type after it is stored as int

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

The time (2) type retains two bits in milliseconds, and after the application converts the time (2) type to int and stores it to SQL Server, the following two methods can convert int to time (2):

-- method 1DECLARE @ T intSET @ T = 10455836SELECT DATEADD (hour, (@ T / 1000000)% 100, DATEADD (minute, (@ T / 10000))% 100, DATEADD (second, (@ T / 10000)% 100, DATEADD (millisecond, (@ T% 100) * 10, cast ('0000 AS time' AS time (2)-method 2SELECT CAST (STUFF (STUFF (CAST (@ T AS varchar), 3pr (CAST (@ T AS varchar)), 6B0) ':'), 9. 0.) AS time (2))

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report