Update index.md

This commit is contained in:
kirillikoff 2021-06-15 13:01:53 +03:00 committed by GitHub
parent e09a09f775
commit 1a79540457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,10 +197,7 @@ SELECT now() AS current_date_time, current_date_time + INTERVAL '4' day + INTERV
Пример:
``` sql
SELECT
toDateTime('2014-10-26 00:00:00', 'Europe/Moscow') AS time,
time + 60 * 60 * 24 AS time_plus_24_hours,
time + toIntervalDay(1) AS time_plus_1_day
SELECT toDateTime('2014-10-26 00:00:00', 'Europe/Moscow') AS time, time + 60 * 60 * 24 AS time_plus_24_hours, time + toIntervalDay(1) AS time_plus_1_day;
```
``` text