postgres json_build_object

json_build_object('foo',1,2,row(3,'bar')) → "foo" : 1, "2" : "f1":3,"...

postgres json_build_object

json_build_object('foo',1,2,row(3,'bar')) → "foo" : 1, "2" : "f1":3,"f2":"bar"}}. json_object ( text[] ) → json. jsonb_object ( text[] ) → jsonb. Builds a JSON object out of ... ,json_build_object(VARIADIC "any"). jsonb_build_object(VARIADIC "any"). Builds a JSON object out of a variadic argument list. By convention, the argument list ...

相關軟體 PostgreSQL (64-bit) 資訊

PostgreSQL (64-bit)
PostgreSQL 64 位是一個功能強大的開源對象關係數據庫系統。它擁有超過 15 年的積極開發和經過驗證的架構,在可靠性,數據完整性和正確性方面贏得了良好聲譽。它運行在所有主要的操作系統上,包括 Linux,UNIX(AIX,BSD,HP-UX,SGI IRIX,Mac OS X,Solaris,Tru64)和 Windows。  PostgreSQL 64 位是一個功能強大的對象... PostgreSQL (64-bit) 軟體介紹

postgres json_build_object 相關參考資料
Documentation: 9.4: JSON Functions and ... - PostgreSQL

json_build_object(VARIADIC "any"), Builds a JSON object out of a variadic argument list. By convention, the argument list consists of alternating keys and values ...

https://www.postgresql.org

Documentation: 13: 9.16. JSON Functions and ... - PostgreSQL

json_build_object('foo',1,2,row(3,'bar')) → "foo" : 1, "2" : "f1":3,"f2":"bar"}}. json_object ( text[] ) → json. jsonb_object ( text[]...

https://www.postgresql.org

Documentation: 9.6: JSON Functions and ... - PostgreSQL

json_build_object(VARIADIC "any"). jsonb_build_object(VARIADIC "any"). Builds a JSON object out of a variadic argument list. By convention, the argument list ...

https://www.postgresql.org

Documentation: 10: 9.15. JSON Functions and ... - PostgreSQL

json_build_object(VARIADIC "any"). jsonb_build_object(VARIADIC "any"). Builds a JSON object out of a variadic argument list. By convention, the argument list ...

https://www.postgresql.org

Documentation: 12: 9.15. JSON Functions and ... - PostgreSQL

json_build_object(VARIADIC "any"). jsonb_build_object(VARIADIC "any"). Builds a JSON object out of a variadic argument list. By convention, the argument list ...

https://www.postgresql.org

Documentation: 11: 9.15. JSON Functions and ... - PostgreSQL

json_build_object(VARIADIC "any"). jsonb_build_object(VARIADIC "any"). Builds a JSON object out of a variadic argument list. By convention, the argument list ...

https://www.postgresql.org

jsonb_build_object() and json_build_object() | YugabyteDB ...

jsonb_build_object() and json_build_object() · Purpose: Create a JSON object from a variadic list that specifies keys with values of arbitrary SQL data type.

https://docs.yugabyte.com

Documentation: 9.5: JSON Functions and ... - PostgreSQL

json_build_object(VARIADIC "any"). jsonb_build_object(VARIADIC "any"). Builds a JSON object out of a variadic argument list. By convention, the argument list ...

https://www.postgresql.org

Return as array of JSON objects in SQL (Postgres) - Stack ...

2014年10月21日 — json_build_object() in Postgres 9.4 or newer. SELECT value_two, json_agg(json_build_object('value_three', value_three , 'value_four' ...

https://stackoverflow.com

PostgreSQL Json_build_object json_agg add level of ...

2020年3月2日 — Basically, you need another level of aggregation: SELECT json_agg(js) js_final FROM ( SELECT json_build_object( 'id', vl.id, 'id_form', ...

https://stackoverflow.com