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

  • Home
  • SEARCH
  • 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 6641967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:52:28+00:00 2026-05-25T23:52:28+00:00

I currently have a table with all the data, using this data i want

  • 0

I currently have a table with all the data, using this data i want to create another table which could be used for auditing purpose (similar layout like pivot table)

Example Below:

Raw Data

Name         Places Visited
----------------------------
Will         London

John         Toronto

Dave         New York

Will         London

What I want (similar to Pivot Table but I can use letters):

Name/Places Visted    London      Toronto      New York

Will                    Y           N             Y

John                    N           Y             N

Dave                    N           N             Y

Any help to produce this will be much appreciated!

I hope i’ve explained myself well but let me know if you would like to clarify anything.

Many Thanks!!

  • 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-05-25T23:52:28+00:00Added an answer on May 25, 2026 at 11:52 pm

    Solution for SQL Server 2005/2008:

    DECLARE @Temp TABLE 
    (
         Name NVARCHAR(100) NOT NULL
        ,Place NVARCHAR(100) NOT NULL
    );
    
    INSERT  @Temp 
    SELECT 'Will','London'
    UNION ALL
    SELECT 'John','Toronto'
    UNION ALL
    SELECT 'Dave','New York'
    UNION ALL
    SELECT 'Will','London';
    
    SELECT  
        pvt.Name [Name/Places Visted]
        ,CASE WHEN [London] IS NOT NULL THEN 'Y' ELSE 'N' END [London]
        ,CASE WHEN [Toronto] IS NOT NULL THEN 'Y' ELSE 'N' END [Toronto]
        ,CASE WHEN [New York] IS NOT NULL THEN 'Y' ELSE 'N' END [New York]
    FROM    @Temp src
    PIVOT( MAX(src.Place) FOR src.Place IN([London], [Toronto], [New York]) ) pvt
    ORDER BY pvt.Name DESC;
    

    Results:

    Name/Places Visted  London Toronto New York
    ------------------- ------ ------- --------
    Will                Y      N       N
    John                N      Y       N
    Dave                N      N       Y
    

    Note: Columns resulting from PIVOT operation are static. This means that if you add records with Place='PARIS' you should modify the query like this: PIVOT( MAX(src.Place) FOR src.Place IN([London], [Toronto], [New York], [Paris]). So, you could use PIVOT operator if you have a limited number of cities.

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

Sidebar

Related Questions

I currently have a table structure that looks something like this(some details omitted): ColumnName
I currently have a table which only has a single editable column. I have
I currently have a user's table which contains a one-to-one relationship for Youtube OAuth
I currently have the following row in my table: course_data: user_id days <-- This
This is a complex one. But I have a table which has a DATETIME
I have an Access 2003 project in which all data is stored in SQL
I have the following data set, which represents nodes in a directed graph. CREATE
I currently have a Table [org.eclipse.swt.widgets.Table] with several TableColumns; however, due to UI space
I currently have a table with a nested table in it: <table class=datagrid id=report>
Say I have a table with a unique positive integer field. I currently have

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.