SmallDateTime在SQL Server中

时间:2011-09-19 15:09:01

标签: smalldatetime

如何使用SELECT命令在SQL中仅检索 SmallDateTime 数据类型中的TIME?

1 个答案:

答案 0 :(得分:0)

这将给出时间:

Select datename(hh, date_variable) from table_name

这将给出分钟:

Select datename(mi, date_variable) from table_name