Hello all, I'm running Oracle 8i and I have a simple (?) question.
I have a query like this:
SELECT words FROM table WHERE words IN ('My','Dog','Has','Fleas');
It returns this:
Fleas
Has
Dog
My
Of course I would like to have it return this:
My
Dog
Has
Fleas
Is there an easy way to have Oracle return the results in the same order that the values were entered?
-Striker
I have a query like this:
SELECT words FROM table WHERE words IN ('My','Dog','Has','Fleas');
It returns this:
Fleas
Has
Dog
My
Of course I would like to have it return this:
My
Dog
Has
Fleas
Is there an easy way to have Oracle return the results in the same order that the values were entered?
-Striker