I am querying my table with a list of names.
SELECT * FROM mytable WHERE personName IN ('John','Andrew')
This returns 2 rows. In the table Andrew is before John.
- Andrew
- John
I want to order the response in the same order as in the WHERE personName IN ('John','Andrew')