我有以下查询:
SELECT
"external_id" AS EVENT_ID,
"uuid" AS EVENT_VERSION_ID,
"timestamp" AS EVENT_VERSION_TIMESTAMP,
CONCAT('{',
'"timestamp": ', COALESCE(timestamp, NULL), ',',
'"uuid": ', COALESCE("uuid", '"' || "uuid" || '"', 'null'), ',',
'"fraud": ', COALESCE("fraud",'true','false', NULL), ',',
'"score": ', COALESCE("score", NULL), ',',
'"scoreTracking": ', COALESCE("scoreTracking", NULL), ',',
'"domain": ', COALESCE("domain", '"' || "domain" || '"', NULL), ',',
'"event_occurred_at": ', COALESCE("event_occurred_at", NULL), ',',
'"event_received_at": ', COALESCE("event_received_at", NULL), ',',
'"event_type": ', COALESCE("event_type", '"' || "event_type" || '"', NULL), ',',
'"event_is_update": ', COALESCE("event_is_update",'true', 'false', NULL), ',',
'"transaction_id": ', COALESCE("transaction_id", '"' || "transaction_id" || '"', NULL), ',',
'"transaction_created_at": ', COALESCE("transaction_created_at", NULL), ',',
'"transaction_updated_at": ', COALESCE("transaction_updated_at", NULL), ',',
'"transaction_type": ', COALESCE("transaction_type", '"' || "transaction_type" || '"', NULL), ',',
.
.
.
.
.
186 fields to concat......) AS EVENT_FIELDS;
然而,postgres不允许我传递超过100个参数。我在网上查了一下,发现了关于" variadic" 参数的内容。但是,我不确定如何在这种情况下使用它。
非常感谢提前。
答案 0 :(得分:5)
row_to_json()
是获得{"timestamp:2017-01-01","uuid: 1255784",...}
SELECT "external_id" AS EVENT_ID
,"uuid" AS EVENT_VERSION_ID
,"timestamp" AS EVENT_VERSION_TIMESTAMP
,row_to_json(( --{"timestamp:2017-01-01","uuid: 1255784",...}
SELECT t
FROM (
SELECT timestamp
,uuid
,fraud
,score
,event_occurred_at
) t
)) AS EVENT_DATA
FROM your_table