• Maybe some code like this

    SELECT FirstName, LastName

    FROM(

    SELECT FirstName,

    ROW_NUMBER() OVER(ORDER BY FirstName) rn

    FROM( SELECT DISTINCT FirstName FROM MyTable)x) a

    JOIN (

    SELECT LastName,

    ROW_NUMBER() OVER(ORDER BY LastName DESC) rn

    FROM( SELECT DISTINCT LastName FROM MyTable)y ) b ON a.rn = b.rn

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2