I have this table
select
Store_Desc + ' ('+Store_ID + ')' as storename
from
table_name
order by
ID
Results:
Apple (0051)
Cherries (0060)
Banana (0081)
On the top of the result I need another row looks like:
Result:
Fruits
----------------
Apple (0051)
Cherries (0060)
Banana (0081)
How should I need to insert top row with out changing order down (I can use temporary table if needed)