kalo insertnya tetep datetime tapi waktu pas ambil sebagai time aja bisa ga... contohnya : create table #test ( id int, waktu datetime ) insert #test select 1,'19000101 11:00:01' Select CONVERT(varchar, waktu, 114) AS From #test drop table #test
kalo pakai sql server 2008 uda ada data type "time" bisa dipakai tuh... http://msdn.microsoft.com/en-us/library/bb677243%28v=sql.105%29.aspx contohnya : declare @a time(3) set @a='11:01:01' select @a