問題タブ [postgresql-13]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
256 問題
0
投票する
1
に答える
252
参照
json - json形式を変換するクエリによるPostgresqlグループ
私のタブラデータは次のとおりです。
_id | 製品番号 | 商品名 | 販売価格 | 購入金額 | 国 |
---|---|---|---|---|---|
1 | prd_1 | 製品1 | 15 | 12 | アメリカ合衆国 |
2 | prd_1 | 製品1 | 16 | 13 | カナダ |
3 | prd_2 | 製品2 | 7 | 5 | 中国 |
4 | prd_2 | 製品2 | 12 | 10 | 日本 |
製品ごとにグループ化し、json形式に変換したい。次のような最終版が欲しいです。
次のクエリを作成しましたが、必要な結果が得られません。すべてのjsonオブジェクトを1列だけにしたいからです。必要なクエリを作成するにはどうすればよいですか? 可能です?