Tagged Questions
The unpivot tag has no wiki summary.
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 ...
4
votes
5answers
3k views
SQL Server - Include NULL using UNPIVOT
UNPIVOT will not return NULLs, but I need them in a comparison query. I am trying to avoid using ISNULL the following example (Because in the real sql there are over 100 fields.:
Select ID, ...
2
votes
2answers
60 views
Oracle UNPIVOT and SYSDATE giving weird results
I am trying to transpose columns to rows using query similar to the following...
WITH
query AS
(
SELECT SYSDATE AS SomeDate,
'One' AS One,
'Two' AS Two,
...
2
votes
4answers
89 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
269 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
63 views
using a sub-query to populate unpivot columns list
I currently do not have access to a server to test this out on, but how would I go about doing something like the following
UNPIVOT (X for XY IN (
SELECT column_name AS [XY]
FROM ...
1
vote
1answer
369 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
469 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 ...
1
vote
2answers
69 views
sql server unpivoting table
I'm having trouble trying to unpivot the following table.
| operation | ...other columns... | A1 | B1 | C1 | A2 | B2 | C2 | A3 | B3 | C3 | ... |
into something like this...
| operation | ...
1
vote
3answers
706 views
1
vote
4answers
441 views
Unpivot xml doc based on attributes using XSLT
I have a simple xml document that looks like the following snippet. I need to write a XSLT transform that basically 'unpivots' this document based on some of the attributes.
<?xml version="1.0" ...
0
votes
1answer
51 views
Multiple insert with variable number of parameters SQL
I have a table t_test on Oracle 11g with two fields:
CITY NAME
----- --------------
MIAMI JOHN
MIAMI ERNEST
MIAMI ERICK
TAMPA DAN
I want to insert multiple rows on that query using just one insert ...
0
votes
1answer
81 views
SQL - Unpivot result of one column
on Oracle 10g, say i have this following column :
col
------------------------------------------------------------------------------------------------
...
0
votes
1answer
42 views
Unpivoting Data in SSIS
I am attempting to normalize data using SSIS in the following format:
SerialNumber Date R01 R02 R03 R04
-------------------------------------------
1 9/25/2011 9 6 1 ...
0
votes
0answers
64 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
1answer
38 views
How to resolve a category from a property table in SQL
By way of an example, lets say I have the following (simplified) table (called NumericValue):
Age Gender Occupation Location Value
40 M Accountant Johannesburg 100
...
0
votes
1answer
145 views
how to write query for row to column in sql server 2008?
I have table customer
customerno sname contactid address
1 aaa 101 north
1 bbb 102 south
1 ccc 103 west
2 ...
0
votes
2answers
917 views
PIVOT / UNPIVOT in SQL Server 2008
I got child / parent tables as below.
MasterTable:
MasterID, Description
ChildTable
ChildID, MasterID, Description.
Using PIVOT / UNPIVOT how can i get result as below in single row.
if ...
0
votes
1answer
1k views
t-sql most efficient row to column? crosstab for xml path, pivot
I am looking for the most performant way to turn rows into columns. I have a requirement to output the contents of the db (not actual schema below, but concept is similar) in both fixed width and ...
0
votes
2answers
274 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
512 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 ...