次のようなDateTime型のデータがあります。
Examle == 2015-01-09 15:19:00 2015-01-09 14:10:00
Timeだけを抽出して、次のような結果を取得する方法について説明します。
Examle == 2015-01-09 15:19:00 2015-01-09 14:10:00
SQL Server 2008
select cast(Example as time) [time] from table
SQL Server 2008以前
select convert(char(5), Example, 108) [time] from table