I have a table with the CommonName and FirstName fields. Only each field has data, but not both. Is there a way to arrange rows in a crossover way on SQL Server?
Example:
CommonName FirstName Bern Wade Ashley Boris Ayana
I want the entries to be arranged as follows:
CommonName FirstName Ashley Ayana Bern Boris Wade
Is this possible, and if so, how?
Alex source share