In this article, I found a sql query to find day, month and year from the current or any date using inbuilt functions such as DATEPART() or DAY(), MONTH() and YEAR() functions.
SELECT
DATEPART(DD,GETDATE()) AS Day,
DATEPART(MM,GETDATE()) AS Month,
DATENAME(YYYY,GETDATE()) AS Year
(OR)
SELECT
DATEPART(DAY,GETDATE()) AS Day,
DATEPART(MONTH,GETDATE()) AS Month,
DATEPART(YEAR,GETDATE()) AS Year
Output
--------
Day Month Year
21 3 2016
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article