I\'m trying to perform a SELECT with an IN clause and I would like to be able to have the results returned in the same order as the elements in my list
SELECT
IN
I made an answer here in a more recent question
https://stackoverflow.com/questions/14234748/preserve-rows-order-in-select-query-as-same-in-statement
My answer use a pipe row function so it doesn't need to use a temp table like the accepted answer here.