I want to write below value into table use ingestion inline.
.ingest inline into table Purchases1 <|
{"19node_0x0101010002":{"values":{"nodeValue":"11139","timestampTssReceived":"2022-07-20T09:13:18.4590000Z"}}},xxx,30
but the json will be split by comma like below resalt, if have some approach to avoid the comma as splitter in this json?
.create table Purchases2 (name: dynamic, country: string, age: long)
Purchases2