Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (20.3k points)

I can extract the month and day by using Day(Date()), Month(Date()). I can't extract hours, with HOUR(Date()). I get the following error.

'HOUR' is not a recognized built-in function name.

How can I extract hours?

1 Answer

0 votes
by (40.7k points)

Try using below code:

SELECT DATEPART(HOUR, GETDATE());

For more information, you can refer to DATEPART documentation

Related questions

Browse Categories

...