Sorry for bad english.
bfproduct is a table and productid is primary key in this table and productname is another field defined in this table.
When i execute this query, select * from bfproduct where productid in (23,5,54,3132,32)
. The result is as follows:
productid | productname 5 15 Park Avenue 23 Good Boy Bad Boy 32 dsf sf gfdsf dsf d 54 dsdsfsa ffs ff sfsf 3132 Just Books - On The Failure of Legal System
Is there any way i will get the resultset in the order by the productid provided in "IN" Clause e.g.
productid | productname 23 Good Boy Bad Boy 5 15 Park Avenue 54 dsdsfsa ffs ff sfsf 3132 Just Books - On The Failure of Legal System 32 dsf sf gfdsf dsf d
Please help...