Viewing post 1 (of 2 total)
I found the answer. What you want to do is something like this:
DECLARE @result varchar(max)
SET @result = ''
SELECT @result = @result + book_name + ', '
FROM book
WHERE author_id =...
May 16, 2007 at 8:05 pm
#706978