Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 SQL 中将时间对象转换为 12 小时格式?我不能 nessessarilly 使用日期时间,因为正在检索的数据不是特定于日期的。
16:45:00 --> 下午 4:45
尝试使用这个:
DECLARE @aux NVARCHAR(8)='16:45:00' SELECT CONVERT(VARCHAR(15),CAST(@aux AS TIME),100)