Here's one easy way...
SELECT <<columnnames>> FROM <<someschemaname>>.<<sometablename>> ORDER BY IIF(name='p',0,1) ;
If the returns are huge, then a bit of trickery with an additional column in the table may be required to improve performance.
17 People are following this question.