我有一个 kdb 表,其格式可以概括为
app type labels
--------------------------------------------------------
app1 frontend ("language:js";"owner:bob";"license:GPL")
app2 backend ("language:go";"owner:alice")
我无法弄清楚如何将其labels
直接“分解”到该表中自己的列中并获得类似的
app type language owner license
-------------------------------------------
app1 frontend "js" "bob" "GPL"
app2 backend "go" "alice" ""
(注意可选的 kv)
我怎样才能做到这一点?我觉得我错过了一些非常简单的东西......