In GETDATE() function will return current date and time from the SQL Server.
To get current year, I combine YEAR with GETDATE = YEAR(GETDATE());
select YEAR(GETDATE())AS current_year;
select datepart(yyyy,getdate())AS current_year;select datepart(MM,getdate()) AS current_month;
select datepart(dd,getdate()) AS current_day;
OUTPUT:
current_year |
2016 |
current_year |
2016 |
current_month |
2 |
current_day |
18 |
2016 //current year
2016 //current year
2 //current Month
18 //current day
Post your comments / questions
Recent Article
- How to use if else statement in c++?
- How to use godaddy domain name with another godaddy hosting account?
- Restore of database 'DATABASE' failed. (Microsoft.SqlServer.Management.RelationalEngineTasks)
- How to programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
- How to calculate days difference between two dates in c#?
- Changing date format in jQuery ui datepicker
Related Article