Get Hours and Minutes (HH:MM) from date

前端 未结 8 450
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-02 07:26

I want to get only hh:mm from date.

How I can get this?

I have tried this :

CONVERT(VARCHAR(8), getdate(), 108)
8条回答
  •  既然无缘
    2021-02-02 07:43

    If you want to display 24 hours format use:

    SELECT FORMAT(GETDATE(),'HH:mm')
    

    and to display 12 hours format use:

    SELECT FORMAT(GETDATE(),'hh:mm')
    

提交回复
热议问题