mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Add intset() to README
This commit is contained in:
@ -60,6 +60,13 @@ test=# select subarray('{1,2,3,2,1}'::int[],2,3);
|
|||||||
{2,3,2}
|
{2,3,2}
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
|
int[] intset(int4) - casting int4 to int[]
|
||||||
|
|
||||||
|
test=# select intset(1);
|
||||||
|
intset
|
||||||
|
--------
|
||||||
|
{1}
|
||||||
|
(1 row)
|
||||||
|
|
||||||
OPERATIONS:
|
OPERATIONS:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user