I need to add a single record on top of an sql query eg if there is a table called proptype and has 3 records (ID (int) + Name (nvarchar) = 1 Apartment, 2 Townhouse, 3 Villa) then I would like to select and sort (on name) those 3 records and add manually a new record (NULL Please Select) on top.
The result therefore should be
ID Name
NULL Select
1 Apartment
2 Townhouse
3 Villa
Please advice, thanks, Mike
1 Answer