From 1a79540457a75ee18e4cc72b3880468018822d3d Mon Sep 17 00:00:00 2001 From: kirillikoff Date: Tue, 15 Jun 2021 13:01:53 +0300 Subject: [PATCH] Update index.md --- docs/ru/sql-reference/operators/index.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/ru/sql-reference/operators/index.md b/docs/ru/sql-reference/operators/index.md index 32501268e5b..5cf21b64079 100644 --- a/docs/ru/sql-reference/operators/index.md +++ b/docs/ru/sql-reference/operators/index.md @@ -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