PostgresデータベースでHSTORE
データ型(データがある)の既存の列をJSON
データ型に変更する方法はありますか?
簡単に使用できます hstore_to_json
functionjson
からhstore
を取得します。テーブルを変更するには、 ALTER TABLE
コマンド 。
例:
ALTER TABLE table_name
ALTER your_column_name TYPE json USING hstore_to_json(your_column_name);
有る hstore_to_jsonb
jsonb
の代わりにjson
が必要な場合も同様です。