Last active
September 16, 2022 15:11
Postgres: Update only portion of range, preserving other half and bounds.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE <TABLE> SET | |
<COLUMN>=<RANGE_TYPE>( | |
lower(<COLUMN>), -- Swap out for actual value | |
upper(<COLUMN>), -- Swap out for actual value | |
concat( | |
CASE WHEN lower_inc(<COLUMN>) THEN '[' ELSE '(' END, | |
CASE WHEN upper_inc(<COLUMN>) THEN ']' ELSE ')' END | |
) | |
) | |
WHERE <CONDITION>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment