

InterviewSolution
Saved Bookmarks
1. |
Date() and day() return the same thing |
Answer» atement is false.DATE() is a FUNCTION that returns the current date in YYYY-MM-DD format.DAY() is a function that returns the date part of the date alone, i.e., DD.Examples:date()Output: dayname()Output: Other date FUNCTIONS INCLUDE:Curdate() - Returns the current date.Dayname() - Returns the day name of the week.Year() - Returns the year, i.e., YYYY.Month() - Returns the month of the year in numerical format, from 1 - 12.Monthname() - Returns the month name of the expression, from January - December. |
|