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 8286351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T11:43:24+00:00 2026-06-08T11:43:24+00:00

I have a table with 20 columns that all display the same thing. I’m

  • 0

I have a table with 20 columns that all display the same thing. I’m not sure why my company set it up like this, but I cannot make changes to the table.

With that in mind, here is what I need to do. I need to populate a drop down list with insurance company names. Therefore I need to find unique values across the entire table.

Using a Group By clause is out of the question because I need unique values across the entire table. No single column contains all the possible values. My only thought was to combine all the columns of the table together. I’ve seen this done using two pipes ( || ). But that concatenates the columns which does not help me.

I need to join two (or twenty) columns together and add their rows together. I.e. if I started out with 20 columns and 100 rows, I need to have one column with 2000 rows. This way I can select unique values using the Group By clause.

Any help would be greatly appreciated!

Sample of what I’m trying to accomplish:

Sample original table:

    --Ins1-----Ins2---Ins3---Ins4-
    Medicaid-Medicare-------------
    ---------Medicaid-----No 485--
    Blue Cross--------------------
    -------Home Health----Medicare

Table I need to construct:

    --Column1--
    -Medicaid--
    -----------
    Blue Cross-
    -----------
    -Medicare--
    -Medicaid--
    -----------
    Home Health
    -----------
    -----------
    -----------
    -----------
    -----------
    --No 485---
    -----------
    -Medicare--

Maybe my logic is wrong. This is the only way I could see to find unique information across the entire table.

  • 1 1 Answer
  • 0 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-06-08T11:43:26+00:00Added an answer on June 8, 2026 at 11:43 am

    If this is SQL Server, then it sounds like you need to use UNPIVOT to perform this transformation.

    Sample UNPIVOT (See SQL Fiddle with Demo):

    select ques, answer
    FROM t1
    unpivot
    (
        answer
        for ques in (col1, col2, col3, col4)
    ) u
    

    The UNPIVOT will transform your data from columns to rows.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table (participants) which has multiple columns that could all be distinct.
I have the following table that lists all awarded cups: Name: Cups Columns: Month,
I have a table that I need to update where all columns are optionally
I have a table that has three different date columns, so I set each
I have a table that containts a set of columns one of it is
I have 5 tables (tbl1, tbl2, tbl3, tbl4, tbl5) that all have similar columns,
I have temp table #xml that have 2 columns: CREATE TABLE #xml ( id
I have a table that contains the following columns: ID int, DISTANCE float, EVENT
I have a table that has two datetime columns (one for start time and
I have a table that has two columns: CommunityID PersonID And A People table

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.