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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T01:57:45+00:00 2026-06-16T01:57:45+00:00

I have a table: CREATE TABLE StatusStats ( UserID VARCHAR(50), StatusCategory VARCHAR(50), StatusDuration INT

  • 0

I have a table:

CREATE TABLE StatusStats (
    UserID      VARCHAR(50),
    StatusCategory  VARCHAR(50),
    StatusDuration  INT
)

That contains, for each user, how much time they were (StatusCategory)

  • Productive
  • NonProductive
  • Unknown

(fyi… status duration is in seconds)

Those are the only 3 values.

In order to use this data in reporting using JOINs to other tables, I need to copy that data in to this table:

CREATE TABLE StatusStatsByUser (
    UserID      VARCHAR(50),
        Productive      INT,
        NonProductive   INT,
        Unknown         INT
)

That will contain in each column the value that was in the StatusDuration column for the corresponding value in the StatusCategory column.

I can’t figure out how to write the SQL code to do that, using SQL Server 2008R2. Your help is very much appreciated.

  • 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-16T01:57:46+00:00Added an answer on June 16, 2026 at 1:57 am

    There is no need to store this data in a table, you can easily create a view that PIVOTs the data into the columns that you need:

    CREATE VIEW yourPivotedView
    AS 
    select userid, Productive, NonProductive, Unknown
    from 
    (
        select userid, StatusCategory, StatusDuration
        from StatusStats 
    ) src
    pivot
    (
        sum(StatusDuration)
        for StatusCategory in (Productive, NonProductive, Unknown)
    ) piv
    

    Once this is in a view, then you can join on it with your other tables:

    select *
    from yourtable t1
    inner join yourPivotedView p
      on t1.userid = p.userid
    

    But if you must insert this into a new table, you can use:

    insert into StatusStatsByUser (userid, Productive, NonProductive, Unknown)
    select userid, Productive, NonProductive, Unknown
    from 
    (
        select userid, StatusCategory, StatusDuration
        from StatusStats 
    ) src
    pivot
    (
        sum(StatusDuration)
        for StatusCategory in (Productive, NonProductive, Unknown)
    ) piv
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this table: CREATE TABLE Persons ( P_Id int NOT NULL, LastName varchar(255)
I have a table create table Profiles (id int, xml_data xml ) that has
I have table as below create table myTable (id int, col1 varchar(20), col2 varchar(20),
I have table definitions: create table users( id int not null auto_increment, usernaname varchar(50)
I have the table CREATE TABLE IF NOT EXISTS `logs` ( `userid` int(11) NOT
I have created table create table AA( id int , name varchar(20), sname varchar(20)
Below is how I have table. create table tab1 ( id int, myname varchar(20));
Lets say I have table as below. create table t1 (id INT, tempData varchar(25));
I have a table: CREATE TABLE siteConfig ( settingName VARCHAR(64) NOT NULL, value VARCHAR(255),
I have a table: create table Transactions(Tid int, amt int) With 5 rows: insert

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.