SQL - Order against two columns at the same time (intersecting)

Posted by Alex on Stack Overflow See other posts from Stack Overflow or by Alex
Published on 2010-05-25T17:41:25Z Indexed on 2010/05/25 17:51 UTC
Read the original article Hit count: 410

Filed under:
|
|

I have a table with the fields CommonName and FirstName. Only either field has data, never both. Is there a way to order rows in an intersecting manner on SQL Server?

Example:

CommonName FirstName
Bern
           Wade
Ashley
Boris
           Ayana

I want records ordered like this:

CommonName FirstName
Ashley
           Ayana
Bern
Boris
           Wade

Is this possible, and if so, how?

© Stack Overflow or respective owner

Related posts about sql

Related posts about order-by