I have a table tag with 2 fields ID, Text. I'd like to make a query with distinct value of Text and add 'All' On first position (it's used in a SSRS parameter value) I made the following query:
SELECT 'All' [Text] Union
Select DISTINCT [text] from tag
the problem is there are some text starting with number and came before the All Text in the query. How can I make the query in order to get All in the first Row