In EMP table when I execute the syntax
Select * from emp where ename in('king','Allen','Blair','Tony')
it gives the output in the same sequence of names as stored in table e.g first allen,tony,king and then blair. But I require the output in the same sequence same as in query as king,allen,blair and then tony.
In Oracle I can do it by Decode function but in SQL server there is no DECODE function.
Please help



[Edited by arun_rashmi on 04-21-2001 at 04:00 AM]