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 check PAN-Aadhaar is Linked or NOT?
- How to customize pagination for django admin?
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
Related Article