# TOMORROW

```
TOMORROW()
```

Returns the current date time plus *1 day*.

Available in:

| Processors | SQL Studio |
| ---------- | ---------- |
| ✓          | ✓          |

*Sample code:*

```sql
USE `kafka`;
SELECT TOMORROW() 
FROM nyc-yellow-taxi-trip
LIMIT 1;
```

*Output:*

```json
{
  "value": {
    "TOMORROW": "2023-11-30T18:49:25.182Z"
  }
}
```
