Is there any way to slip in a record to the top of a result set in MySQL? For instance, if my results are:
1 | a 2 | b 3 | c etc
I want to be able to get:
Select | Select 1 | a 2 | b 3 | c etc
Where "Select" isn't actually a part of the recordset, but artificially inserted.
Thanks.