mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Rename columns to avoid ambiguity with sql
This commit is contained in:
parent
d8f7383fd7
commit
7395c0eadc
@ -4,13 +4,13 @@ DROP TABLE IF EXISTS array_of_tuples;
|
||||
|
||||
CREATE TABLE array_of_tuples
|
||||
(
|
||||
first Array(Tuple(Float64, Float64)),
|
||||
second Array(Tuple(UInt8, UInt16, UInt32))
|
||||
f Array(Tuple(Float64, Float64)),
|
||||
s Array(Tuple(UInt8, UInt16, UInt32))
|
||||
) ENGINE = Memory;
|
||||
|
||||
INSERT INTO array_of_tuples values ([(1, 2), (2, 3), (3, 4)], array(tuple(1, 2, 3), tuple(2, 3, 4))), (array((1.0, 2.0)), [tuple(4, 3, 1)]);
|
||||
|
||||
SELECT first from array_of_tuples;
|
||||
SELECT second from array_of_tuples;
|
||||
SELECT f from array_of_tuples;
|
||||
SELECT s from array_of_tuples;
|
||||
|
||||
DROP TABLE array_of_tuples;
|
||||
|
Loading…
Reference in New Issue
Block a user