C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL From_days() FunctionThe from_days() is a MySQL date/time function. It is used to get the date of the given number of days. Syntax
select from_days(numeric_day); Parameter:
Numeric: value to convert in date. Example 1Select from_days(756982); Output:
Example 2
Select from_days(456982); Output:
Next TopicMySQL date/time
|