mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
9 lines
307 B
SQL
9 lines
307 B
SQL
drop table if exists tsv_raw;
|
|
create table tsv_raw (strval String, intval Int64, b1 String, b2 String, b3 String, b4 String) engine = Memory;
|
|
insert into tsv_raw format TSVRaw "a 1 \ \\ "\"" "\\""
|
|
;
|
|
|
|
select * from tsv_raw format TSVRaw;
|
|
select * from tsv_raw format JSONCompactEachRow;
|
|
drop table tsv_raw;
|