Hi Guys!
I need to make an UPDATE on a column reordering it with a sequence using order by a description. Confusing??? Well.. Let me give an example... Today, my table it's organized like this: Code / Description 9 Orange 15 Apple 1 Pear 3 Tomato I wanna to reorganize (reordering the code from 1 to ... ordering by description) Code / Description 1 Apple 2 Orange 3 Pear 4 Tomato I created a sequence but I am having no succes to use it because UPDATE don't accept ORDER BY CLAUSE. The "ideal SQL" is UPDATE table SET code = nextval('sequence') ORDER BY description I searched a lot on the NET without ant "tip" for my case. It's a very simple need but I am not able to solve it... Anyone knows how I can do it? Cheers, -- Rodrigo Carvalhaes -- Esta mensagem foi verificada pelo sistema de antivírus e acredita-se estar livre de perigo. |
- [SQL] UPDATE WITH ORDER BY Rodrigo Carvalhaes
- Re: [SQL] UPDATE WITH ORDER BY Christoph Haller
- Re: [SQL] UPDATE WITH ORDER BY Rodrigo Carvalhaes
- Re: [SQL] UPDATE WITH ORDER BY Greg Sabino Mullane
- Re: [SQL] UPDATE WITH ORDER BY Ramakrishnan Muralidharan