Re: sql trees move some element - Mailing list pgsql-general

From Karsten Hilbert
Subject Re: sql trees move some element
Date
Msg-id 20031030102434.E621@hermes.hilbert.loc
Whole thread Raw
In response to sql trees move some element  (sector119@mail.ru)
List pgsql-general
> I have a table:
>  id          | integer | not null default
>  nextval('public.menu_2_id_seq'::text)
>  parent_id   | integer |
>  description | text    | not null
>
> how am I able to move some element with id = x before or after
> element with id = y ?
In relational databases there is no such concept of "before"
and "after". If you want to make id.x smaller then id.y you
can just update the column id to the values you desire. You
then need to make sure that you don't get in the way of the id
value of other rows. One way to do it would be to compare the
values of id.x and id.y and switch them around if necessary.

Karsten
--
GPG key ID E4071346 @ wwwkeys.pgp.net
E167 67FD A291 2BEA 73BD  4537 78B9 A9F9 E407 1346

pgsql-general by date:

Previous
From: Shridhar Daithankar
Date:
Subject: Re: slow query performance
Next
From: "Dave Weaver"
Date:
Subject: Re: slow query performance