Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1033121
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:11:04+00:00 2026-05-16T14:11:04+00:00

I have a table CSFT_SuggestionItem with cols like: SuggestionItemID Title Description, etc. ———————————————————— 1

  • 0

I have a table CSFT_SuggestionItem with cols like:

SuggestionItemID  Title                Description, etc. 
------------------------------------------------------------
1                 Item 1               Do more work
2                 Item 2               I think more is good

For each SuggestionItem, there can by multiple “Applications” where it can be associated, so I have CSFT_SuggestionItemApplication

SuggestionItemID    ApplicationID
----------------------------------
1                    1
1                    2
2                    1

And I have an CSFT_Application Table

ApplicationID        Description
----------------------------------
1                    Spring
2                    Summer
3                    Fall
4                    Winter

I want my output to look like this:

SuggestionItemID     Applications
----------------------------------
1                    Spring, Summer  
2                    Spring

I know I can do this by Looping. But, is there a better way in Sql server 2005? Maybe COALESCE, PIVOT, etc.

  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T14:11:05+00:00Added an answer on May 16, 2026 at 2:11 pm

    Use:

    SELECT DISTINCT
           sia.SuggestionItemID,
           STUFF((SELECT ','+ a.description
                    FROM CSFT_Application a
                    JOIN CSFT_SuggestionItemApplication b ON b.applicationid = a.applicationid
                   WHERE b.suggestionitemid = sia.suggestionitemid
                GROUP BY a.description
                 FOR XML PATH('')), 1, 1, '') AS applications
      FROM CSFT_SuggestionItemApplication sia
    

    Alternate using GROUP BY:

      SELECT sia.SuggestionItemID,
             STUFF((SELECT ','+ a.description
                      FROM CSFT_Application a
                      JOIN CSFT_SuggestionItemApplication b ON b.applicationid = a.applicationid
                     WHERE b.suggestionitemid = sia.suggestionitemid
                  GROUP BY a.description
                   FOR XML PATH('')), 1, 1, '') AS applications
        FROM CSFT_SuggestionItemApplication sia
    GROUP BY sia.SuggestionItemID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table of data that is sorted as follows: Item | Sample |
I have table in an MS Access database that looks like this: ID Symbol
I have table with pageId, parentPageId, title columns. Is there a way to return
I have table cars: Id int, Model nvarchar(max), DateOfProduction (datetime). And data like: 1
I have table like below ID User Date Location 1 Tom 6-Mar-2012 US 2
I have table like below : <table> <thead> <th>Product Type</th> <th>Quantity</th> <th>Unit</th> <th>Total</th> </thead>
I have table (call it my_table ) that can be simplified like this: NAME,
I have table like this: +------+-------+ | user | data | +------+-------+ | 1
I have table that contains more than 12 millions of rows. I need to
I have table: Article: ID | TITLE | CONTENT 1 | aaa+s | sdsd

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.