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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:01:13+00:00 2026-05-15T10:01:13+00:00

I have a Sql Database table similar to the following: Day Period Subject Mon

  • 0

I have a Sql Database table similar to the following:

Day   Period    Subject

Mon   1         Ch
Mon   2         Ph
Mon   3         Mth
Mon   4         CS
Mon   5         Lab1
Mon   6         Lab2
Mon   7         Lab3
Tue   1         Ph
Tue   2         Ele
Tue   3         Hu
Tue   4         Ph
Tue   5         En
Tue   6         CS2
Tue   7         Mth

I would like it displayed as follows: Kind of crosstab or Pivot

Day   P1   P2   P3   P4   P5   P6   P7

Mon   Ch   Ph   Mth  CS2  Lab1 Lab2 Lab3
Tue   Ph   Ele  Hu   Ph   En   CS2  Mth

What would be the ideal way to do it? Can someone please show me the Sql code please?

  • 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-15T10:01:14+00:00Added an answer on May 15, 2026 at 10:01 am

    You could probably do it with the PIVOT function, but I prefer the old school method:

    SELECT
        dy,
        MAX(CASE WHEN period = 1 THEN subj ELSE NULL END) AS P1,
        MAX(CASE WHEN period = 2 THEN subj ELSE NULL END) AS P2,
        MAX(CASE WHEN period = 3 THEN subj ELSE NULL END) AS P3,
        MAX(CASE WHEN period = 4 THEN subj ELSE NULL END) AS P4,
        MAX(CASE WHEN period = 5 THEN subj ELSE NULL END) AS P5,
        MAX(CASE WHEN period = 6 THEN subj ELSE NULL END) AS P6,
        MAX(CASE WHEN period = 7 THEN subj ELSE NULL END) AS P7
    FROM
        Classes
    GROUP BY
        dy
    ORDER BY
        CASE dy
            WHEN 'Mon' THEN 1
            WHEN 'Tue' THEN 2
            WHEN 'Wed' THEN 3
            WHEN 'Thu' THEN 4
            WHEN 'Fri' THEN 5
            WHEN 'Sat' THEN 6
            WHEN 'Sun' THEN 7
            ELSE 8
        END
    
    • I changed some column names to avoid reserved words
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a SQL database that has the following table: Table: PhoneRecords -------------- ID(identity
I have a SQL database that has a table with a field set to
I have a table with data from an SQL database and the table exists
I have a SQL Server database with 500,000 records in table main . There
I have a table in SQL database: ID Data Value 1 1 0.1 1
I have a Database (SQL Server) with table named 'ProcessData' and columns named 'Process_Name'
I have a table like this in my database (SQL Server 2008) ID Type
In my SQL Server database schema I have a data table with a date
Ok I have a table in my SQL Server database that stores comments. My
I have a DataGridView which is filling from Table in SQL Server Database. One

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.