Hi i have 100 records in my SQL table i want to sort them ASC by name but i need one record on top of all record nr 43.
Is there way i can pull this record 43 first and
Use this:
ORDER BY CASE WHEN (record is 43) THEN 0 ELSE 1 END, Name