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 時間形式に変換する方法はありますか? 取得されるデータは日付に固有のものではないため、必ずしも日時を使用することはできません。
16:45:00 --> 午後 4:45
これを使用してみてください:
DECLARE @aux NVARCHAR(8)='16:45:00' SELECT CONVERT(VARCHAR(15),CAST(@aux AS TIME),100)