Tagged Questions

2
votes
2answers
329 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
388 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
24 views

dynamic pivot in SQL Server

I have a query that uses both pivot and unpivot at the same time and I got it working fine. The code is part of a stored procedure that gets called from a Excel Macro when user passes in the ...
0
votes
1answer
22 views

TSQL UNPIVOT for months + year column to date

I have this table structure in SQL Server 2008: Columns: PersonID, DOSE1, DOSE2, DOSE3, ..... DOSE12, YEAR example row: 123, 0.1, 0.0, 0.5, ..... 0.7, 2008 So basically I have a column ...
0
votes
3answers
42 views

How to converting columns to rows?

please help me with this problem, i have a table like this one, RowNum | TranNo | nTotalSales | nBalance 1 | 1 | 800 | 0 i want to display it this way, RowNum | 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
978 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
292 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 ...