In the statement below:
select * from Books where (isbn IN (5, 1, 9))
The numbers in the IN clause are in random order, but that's the order I hope the resultsets return: 5,1,9, instead of 1,5,9. But how should I phrase the Order By clause?
It worked very well in QA. However I am using this SQL statement in an ASP application. ADO componet doesn't recognize this query and generates an error message when it is processed.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.