When you use a where in query such as...
SELECT
ID, A, T
FROM `table1`
WHERE (A,T)
IN ($query)
Is there a way to have the result in the same order as your query?
So if the $query was ("David Crock", "Big Crocks"), ("Annie Smith", "My Life")
the result is ordered
342 David Crock Big Crocks
12 Annie Smith My Life