Tagged Questions

5
votes
3answers
1k views

Split Multiple Columns into Multiple Rows

I have a table with this structure. UserID | UserName | AnswerToQuestion1 | AnswerToQuestion2 | AnswerToQuestion3 1 | John | 1 | 0 | 1 2 | Mary ...
2
votes
4answers
90 views

GROUP BY or COUNT Like Field Values - UNPIVOT?

I have a table with test fields, Example id | test1 | test2 | test3 | test4 | test5 +----------+----------+----------+----------+----------+----------+ 12345 | P | P ...
2
votes
2answers
271 views

How to simulate UNPIVOT in Access 2010?

UNPIVOT is available in MS SQL-Server 2005, but AFAIK not in MS Access 2010. How can it be implemented with on-board means? For example, I have a table ID | A | B | C | Key 1 | Key 2 | Key 3 ...
2
votes
2answers
1k views

TSQL - Help with UNPIVOT

I am transforming data from this legacy table: Phones(ID int, PhoneNumber, IsCell bit, IsDeskPhone bit, IsPager bit, IsFax bit) These bit fields are not nullables and, potentially, all four bit ...
1
vote
1answer
374 views

Uing PIVOT/UNPIVOT to convert rows to columns

I have been reading up on PIVOT an UNPIVOT but have not been able to get the results formatted correctly to present the data. Here is my source table: StepID | ShortDesc | Type_1 ...
1
vote
1answer
471 views

Have unpivot automatically grab column list (oracle 11g)

This is a follow up question to http://stackoverflow.com/questions/2344403/transpose-one-row-into-many-rows-oracle I want to be able to unpivot an arbitrary query result. To unpivot a table ...
0
votes
1answer
83 views

SQL - Unpivot result of one column

on Oracle 10g, say i have this following column : col ------------------------------------------------------------------------------------------------ ...
0
votes
0answers
65 views

MySQL “degroup” trouble

I have a table in MySQL like the following. mysql> select id, bill_output_id, bill_output_number from order_view; +----+----------------+--------------------+ | id | bill_output_id | ...
0
votes
1answer
164 views

Insert result set from UNPIVOT into table

I am trying to find the syntax for inserting the results from an UNPIVOT statement into an existing table in the database?
0
votes
2answers
275 views

Pivot / unpivot in SQL

I have a view in SQL that I have generated by analysing the values in tables so that field either contain the value 'N', 'D' or 'V'. I can work out the totals by column but not by row... Is this ...
0
votes
1answer
54 views

Updating an UNPIVOTted SQL Table

Okay, I've been beating my head against this, and I'm sure I'm just missing something obvious, but... I have a table in a customer's database, that's basically: Item_Set_Key int Item_1 bit ...
0
votes
1answer
513 views

Unpivot vs. Union queries in T-SQL 2008

Warning: This is a long question The database that I am pulling data from has the table structure like this Table: ClientSales ClientSalesId int identity (1, 1) (PK) ClientId int (FK) ...
0
votes
6answers
2k views

Need help with SQL 2005 SELECT CASE <column> statement

I would really appreciate help with this, I am seriously stuck. Basically I have a table that looks like this: SSS_DOWID Name Mon Tue Wed Thu Fri Sat Sun Description 2 M Y ...