One simple way of solving this as I can see it, is to rank every person's names of each type independently with different ranking signs, i.e. for instance, first names with positive rankings, last names with negative ones. Then you pick and pivot names that have rankings of 1, 2, -1, -2. Here's what the query might look like:
WITH ranked AS (
SELECT
*,
rnk =
CASE NameType WHEN 'first' THEN 1 ELSE -1 END *
ROW_NUMBER() OVER (
PARTITION BY PersonId, NameType
ORDER BY NameId
)
FROM PersonNames
WHERE NameType IN ('first', 'last')
)
SELECT
PersonId,
FName1 = [1],
FName2 = [2],
LName1 = [-1],
LName2 = [-2]
FROM (
SELECT
PersonId,
Name,
rnk
FROM ranked
) s
PIVOT (
MAX(Name) FOR rnk IN ([-2], [-1], [1], [2])
) p
On the other hand, ranking last names from the end might appear more appropriate (at least, I think, I might prefer it better this way). So here's an alternative to the above script which ranks last names from the end:
WITH ranked AS (
SELECT
*,
rnk =
CASE NameType WHEN 'first' THEN 1 ELSE -1 END *
ROW_NUMBER() OVER (
PARTITION BY PersonId, NameType
ORDER BY CASE NameType WHEN 'first' THEN 1 ELSE -1 END * NameId
)
FROM PersonNames
WHERE NameType IN ('first', 'last')
),
SELECT
PersonId,
FName1 = [1],
FName2 = [2],
LName1 = ISNULL([-2], [-1]),
LName2 = CASE WHEN [-2] IS NULL THEN NULL ELSE [-1] END
FROM (
SELECT
PersonId,
Name,
rnk
FROM ranked
) s
PIVOT (
MAX(Name) FOR rnk IN ([-2], [-1], [1], [2])
) p
You can see that this version is a bit more complicated. For one thing, a change of sign had to be applied to NameId to ensure its sorting in different directions for different types.
Another thing is pulling the final result set. You see, if a person has just two or more last names, the script would display them in the order as they are in the table: the item before the last goes to LName1 and the last item goes to LName2. But in case of exactly one last name my intention was to display it as LName1, and LName2 to be empty (just like the first query would do). Therefore, as you can see, additional measures had to be taken to ensure that order of display.
PersonandPersonNamesrelated? Is there aPersonIdinPersonNamesthat you've not shown? – Damien_The_Unbeliever Jan 8 '12 at 9:08