Hi gokuldas,
Refer below sample query.
Database
I have made use of the following table Customers with the schema as follows.
![](https://www.aspsnippets.com/Handlers/DownloadFile.ashx?File=f18ac914-bc9b-437a-88e2-bd640ce05282.png)
I have already inserted few records in the table.
![](https://www.aspsnippets.com/Handlers/DownloadFile.ashx?File=b736972b-595c-4656-ab75-976e054877c7.png)
You can download the database table SQL by clicking the download link below.
Download SQL file
SQL
SELECT * FROM
(
SELECT 'Select All' AS [Name]
UNION all
SELECT DISTINCT [Name]
FROM Customers
) t
ORDER BY CASE WHEN [Name] = 'Select ALL' THEN 0 ELSE 1 END
Screenshot
![](https://i.imgur.com/O8ntC2W.png)