Handling JSON special characters in clickhouse
I want to generate JSON from two usual clickhouse columns and value of one such column has backslash in its containment. First I create table CREATE TABLE app_events.al_test (col1 String,col2 String) ENGINE = MergeTree ORDER BY col1; Then I insert…