Pinned Loading
-
-
Multiple functions to modify json ob...
Multiple functions to modify json objects in PostgreSQL 1-- Aggregate function to aggregate key-value pairs to json object (opposite of json_each())
2-- requires PostgreSQL 9.3+ (but < 9.4!)
3-- requires function "json_object_set_key"
45DROP AGGREGATE IF EXISTS "json_object_agg" (TEXT, anyelement);
-
PostgreSQL function to test if two j...
PostgreSQL function to test if two json values are equal 1-- SQL function to test if two json values are equal
2-- requires PostgreSQL 9.3+
34CREATE OR REPLACE FUNCTION json_equals(json, json)
5RETURNS BOOLEAN
-
Base convert functions for PostgreSQL
Base convert functions for PostgreSQL 1-- SQL function to convert numbers from custom bases to numeric
2-- requires PostgreSQL 9.3+
34CREATE OR REPLACE FUNCTION number_from_base(num TEXT, base INTEGER)
5RETURNS NUMERIC
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.