我们有一个方案可以将XML列解析为配置单元。
但问题是,数据检索从这个视图中消失了(10分钟内1000行),这个表有5亿条记录。
我们有什么方法可以改善表现。
示例XML数据:
<Metrics>
<M Id="132">1.0000000e+000</M>
<M Id="133">2.4000000e+001</M>
</Metrics>
我们需要根据ID值给出不同的列名,如:
,xpath_double (metrics, 'Metrics/M[@Id="1"]') AS totalConnectedTime
,xpath_double (metrics, 'Metrics/M[@Id="3"]') AS apneaHypopneaIndex
,xpath_double (metrics, 'Metrics/M[@Id="4"]') AS apneaIndex