First sort by whether the column name IS_NULL
IS_NULL returns 1 if column_name is null
So now you've sorted all the nonnulls to the top (zeros)
and all the nulls to the bottom (ones)
Having done this, subsort by column_name
all the nonnull column_names get alpha sorted.