Re: array indizes in SQL
| От | Hans-Peter Oeri |
|---|---|
| Тема | Re: array indizes in SQL |
| Дата | |
| Msg-id | 4738671A.6000306@oeri.ch обсуждение исходный текст |
| Ответ на | Re: array indizes in SQL ("Rodrigo De León" <rdeleonp@gmail.com>) |
| Ответы |
Re: array indizes in SQL
|
| Список | pgsql-novice |
Hi!
Rodrigo De León wrote:
HPO
Rodrigo De León wrote:
Thanks for your input... However, you're ignoring the index field order - which might differ from attribute order. At least some querys need 'correct' index orders, like foreign key (field) relations: the field at index position 2 in table a relates to the field at index position 2 in table b.Is there a better way to "decompose" an array? (that I didn't find)SELECT a.attname AS "primarykey" FROM pg_catalog.pg_attribute AS a, pg_catalog.pg_constraint AS o WHERE a.attnum = ANY (o.conkey) AND a.attrelid = o.conrelid AND o.contype = 'p' AND o.conrelid = CAST ( ? AS regclass) ORDER BY a.attnum ASC
HPO
В списке pgsql-novice по дате отправления: