Query table articles:
select * from articles where article_id in(98,97,96,99)
returned result ordered like
record 96 ...
record 97 ...
record 98 ...
record 99 ...
but I prefer the result ordered the same as 'in(98,97,96,99)'. Any tricks to make it possible? Thanks.