ELECT EventParameters
FROM events_all
LIMIT 1
┌─EventParameters────────────────────────────────────┐
│ "{""GroupID"":""Default"",""PlayerID"":""...
It is inserted with escaped quotes(by quotes).
Clickhouse JSON functions can't parse this JSON, only this workaround is working replaceAll(EventParameters, \'""\', \'"\').
It is inserted with escaped quotes(by quotes). Clickhouse JSON functions can't parse this JSON, only this workaround is working
replaceAll(EventParameters, \'""\', \'"\')
.