Tagged Questions
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
...
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 ...
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
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
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
...