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.
hh:mm日付からのみ取得したい。
hh:mm
どうすればこれを入手できますか?
私はこれを試しました:
CONVERT(VARCHAR(8), getdate(), 108)
最初の5文字だけ…?
SELECT CONVERT(VARCHAR(5),getdate(),108)
DATEPART組み込み関数を使用する別の方法:
DATEPART
SELECT cast(DATEPART(hour, GETDATE()) as varchar) + ':' + cast(DATEPART(minute, GETDATE()) as varchar)