Skip to main content

TOMORROW

Returns tomorrow date, same as today() + 1.

Syntax

TOMORROW()

Return Type

Datetime object, returns date in “YYYY-MM-DD” format.

Examples

SELECT TOMORROW();
+------------+
| TOMORROW() |
+------------+
| 2021-09-04 |
+------------+

SELECT TODAY()+1;
+---------------+
| (TODAY() + 1) |
+---------------+
| 2021-09-04 |
+---------------+