Re: Selecting rows with "static" ordering
От | Kevin Hunter |
---|---|
Тема | Re: Selecting rows with "static" ordering |
Дата | |
Msg-id | D9565B27-E46B-498D-ACCE-6DA953DA1ADA@earlham.edu обсуждение исходный текст |
Ответ на | Selecting rows with "static" ordering (Steve Midgley <public@misuse.org>) |
Список | pgsql-sql |
At 8:01p -0400 on 26 Apr 2007, Steve Midgley wrote: > From that application, I want to retrieve all those rows, and I > want them in the order they are currently stored in that variable. > So take for example this foreign application variable: > > ids = "3,2,5,1,4" > > The application then executes this sql: > > select * from table where id in (3,2,5,1,4) > Is there a "neat trick" that anyone knows for pulling this off in a > single query? Basically right now I'm issuing 5 queries to the > backend to ensure ordering but this horribly inefficient. Why not do this particular ordering on the application side? With this example SQL, and assuming you've PRIMARY KEYed( id ), you're guaranteed to get a unique id for each tuple. Presumably, you've got the order you want stored within your application, so just pull it out of a hash in the order you need it. Or is it terribly more complicated than this? Kevin
В списке pgsql-sql по дате отправления: