Greetings!
can anyone explain why SELECT array_lower(array_prepend(0, ARRAY[1,2,3]), 1); returns 0 not 1
because
tradein_clients=# SELECT array_prepend(0, ARRAY[1,2,3]); +---------------+ | array_prepend | +---------------+ | {0,1,2,3} | +---------------+ (1 row)
and
tradein_clients=# SELECT array_lower( ARRAY[0,1,2,3],1 ); +-------------+ | array_lower | +-------------+ | 1 | +-------------+ (1 row)
Time: 402.614 ms
Regds Mallah.
---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly