Update docs/en/sql-reference/functions/other-functions.md

Co-authored-by: Alexey Boykov <33257111+mathalex@users.noreply.github.com>
This commit is contained in:
Dmitriy 2021-08-25 20:15:57 +03:00 committed by GitHub
parent 5a50a1e9d9
commit e8e60e1a60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2259,6 +2259,8 @@ Type: [String](../../sql-reference/data-types/string.md)
Query:
``` sql
CREATE TABLE tmp (str String) ENGINE = Log;
INSERT INTO tmp (*) VALUES ('a');
SELECT count(DISTINCT t) FROM (SELECT queryID() AS t FROM remote('127.0.0.{1..3}', currentDatabase(), 'tmp') GROUP BY queryID());
```