我正在使用以下格式的表进行查询:
id|provider|score
--------------------------------
1 | att | '{"attscore":300}'
1 | verizon | '{"verizonscore":299}'
2 | att | '{"attscore":200}'
3 | verizon | '{"verizonscore":155}'
我试图得到一张如下所示的table:
id|attscore|verizonscore
-------------------------
1 | 300 | 299
2 | 200 | null
3 | null | 155
注意,在sql中使用json
1条答案
按热度按时间nzkunb0c1#
db<>在这里摆弄
这对固定数量的列非常有效,如果你有更多的列,你需要这样做