I\'m making switch from MySQL to SQL Server 2008 Express and can\'t seem to find a CONCAT()-esque function. I have two columns I\'m trying to combine into a string and find
Maybe something like,
SELECT DISTINCT id1, id2, id1 + ', ' + id2
would that work?