From: | David Härdeman <david(at)2gen(dot)com> |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Ordering rows in a table |
Date: | 2003-02-17 14:04:19 |
Message-ID: | 20030217140416.GA461@palpatine.hardeman.nu |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
Hi,
the subject of this message may be a bit misleading.
I have the following scenario...I have a menu on a webpage that points to different pages, the table looks something like this:
id SERIAL, title varchar(64), url varchar(256)
Now I'd like to add an admin page where the order of the menu items can be changed. Specifically commands for moving an entry to the top or bottom of the list would be good. But I have no idea how to do this.
The ideas I've had som far...
adding an extra sort field (SERIAL), this would allow the order to be swapped between two rows by swapping the value of their sort fields....this is not exactly what I want tough.
I've also considered reading the entire table and calculating new "sort" values for each row but this seems very ineffective and not very "elegant".
So how would I do this in a "neat" way?
Thanks in advance,
David Härdeman
PS
Please CC any replies to me
From | Date | Subject | |
---|---|---|---|
Next Message | David C.Oshel | 2003-02-17 14:37:31 | Re: How to copy database |
Previous Message | Aarni Ruuhimäki | 2003-02-17 08:24:47 | Re: How to copy database |