I\'m trying to perform a group by action on an aliased column (example below) but can\'t determine the proper syntax.
SELECT LastName + \', \'
You can use CROSS APPLY to create an alias and use it in the GROUP BY clause, like so:
CROSS APPLY
GROUP BY
SELECT FullName FROM Customers CROSS APPLY (SELECT LastName + ', ' + FirstName AS FullName) Alias GROUP BY FullName