Below is my Table
Table1
+--------+----------+---------+ | amount | make | product | +--------+----------+---------+ | 100 | Nokia | Mo
select top 2 amount, make, product from table1 where product='Mobiles' order by amount desc union select top 2 amount, make, product from table1 where product='Gift' order by amount desc