Tagged Questions

The PIVOT syntax converts row data into columnar data, and vice versa for the UNPIVOT syntax. Not all databases support the PIVOT syntax but the functionality can be implemented, often using decision logic (CASE statements, etc) and aggregate functions.

learn more… | top users | synonyms

29
votes
8answers
49k views

SQL Server PIVOT examples?

Trying to find some simple SQL Server PIVOT examples. Most of the examples that I have found involve counting or summing up numbers. I just want to pivot some string data. For example, I have a ...
14
votes
4answers
13k views

TSQL Pivot without aggregate function

I have a table like this... CustomerID DBColumnName Data -------------------------------------- 1 FirstName Joe 1 MiddleName S 1 LastName Smith 1 ...
12
votes
6answers
9k views

How to pivot a MySQL entity-attribute-value schema

I need to design tables which stores all the (Attributes) metadata of Files i.e., FileName, Author, Title, CreatedDate ... and Custom Metadata ( Metadata added to files by Users) Before examining the ...
11
votes
7answers
919 views

JavaScript/HTML5 equivalent of Microsoft Pivot?

Is there any similar JS/HTML5 library for generating visualizations like Microsoft Pivot? I love the software but I don't like the idea of embedding SilverLight on page to use it. I have been looking ...
8
votes
4answers
886 views

How to pivot rows into columns (custom pivoting)

I have a Sql Database table similar to the following: Day Period Subject Mon 1 Ch Mon 2 Ph Mon 3 Mth Mon 4 CS Mon 5 Lab1 Mon 6 Lab2 ...
8
votes
7answers
2k views

How can I “merge”, “flatten” or “pivot” results from a query which returns multiple rows into a single result?

I have a simple query over a table, which returns results like the following: id id_type id_ref 2702 5 31 2702 16 14 2702 17 3 2702 40 1 2703 23 4 2703 23 ...
7
votes
2answers
129 views

Pivoting in Linq

I am using LINQ-to-Entities, and would like to perform a pivot. For exampe, I have this table: | data1 | data2 | +-------+-------+ | 1 | A | | 1 | B | | 2 | P | | 2 | Q ...
7
votes
4answers
359 views

Convert colums to rows in SQL

I need to write a query which takes rows and converts it into columns - here's my table: Count fname lname id ----------------------------- 1 abc def 20 2 pqr ...
7
votes
3answers
200 views

How to make awkward pivot of sql table in SQL Server 2005?

I have to rotate a given table from an SQL Server but a normal pivot just doesn't work (as far as i tried). So has anybody an idea how to rotate the table into the desired format? Just to make the ...
7
votes
1answer
419 views

Can SQL Server Pivot without knowing the resulting column names?

I have a table that looks like this: Month Site Val 2009-12 Microsoft 10 2009-11 Microsoft 12 2009-10 Microsoft 13 2009-12 Google 20 2009-11 Google ...
7
votes
3answers
6k views

SQL Transpose Rows as Columns

I have an interesting conundrum which I believe can be solved in purely SQL. I have tables similar to the following: responses: user_id | question_id | body ---------------------------- 1 | 1 ...
7
votes
2answers
414 views

Crazy SQL question: How to do a sort of cross apply with a pivot?

Customer has shortcuts in their data where they have a quantity of records in a field. When I parse them, I need to manufacture records, one for each quantity, incrementing the "identifier" by 7 days ...
7
votes
6answers
12k views

Transpose a set of rows as columns in SQL Server 2000

Is there any facility of transposing rows to columns in SQL Server (it is possible in MS-Access)? I was befuddled because this facility is available in MS-Access but not in SQL Server. Is it by ...
6
votes
4answers
336 views

Sql Server 2008 - PIVOT without Aggregation Function

I know you've got multiple topics touching on this. But, I havent found one that addressed my needs. I need to (on demand) pivot select deep table data to a wide output table. The gotcha in this is ...
6
votes
2answers
259 views

“Pivoting” non-aggregate data in SQL Server

this will be the first question I've posted here so pardon any unintended lapses in board etiquette. In my current project, I've taken a large, non-normalized table and broken it into four separate, ...
6
votes
1answer
292 views

How to set a different unselected style for Pivot headers?

I'm using a Pivot control with a HeaderTemplate to set the color of the header. However, I haven't found a way to change the color of the unselected pivot items. They default to an opaque version of ...
6
votes
3answers
221 views

MySQL query question, I can't get it

I hope someone can help me out. I have a table that logs our import jobs. I need a query that will produce a matrix with the names of tables on the vertical axis, the import dates on the horizontal ...
6
votes
2answers
493 views

How do i transform rows into columns in sql server 2005

There is a question here in stackoverflow with the same title but that is not what I am looking for. I have a table like the one below Name | Count ---------------- Chery | 257 Drew | ...
6
votes
2answers
6k views

SQL Server PIVOT - Multiple Aggregates

Given the following result set: --------------------------------------------------------- CustomerID  Service  TransType  SubTotal   Tax   NetTotal ...
6
votes
7answers
8k views

SQL Server 2005 Pivot on Unknown Number of Columns

I am working with a set of data that looks something like the following. StudentName | AssignmentName | Grade --------------------------------------- StudentA | Assignment 1 | 100 StudentA ...
6
votes
3answers
6k views

Pivot Table and Concatenate Columns

I have a database in the following format: ID TYPE SUBTYPE COUNT MONTH 1 A Z 1 7/1/2008 1 A Z 3 7/1/2008 2 B C 2 ...
5
votes
3answers
281 views

SQL max of multiple columns in pivot table

How can you find the max of several columns that are created in a pivot table using a SQL Server 2008 pivot table query? Given: create table ElectionResults_test ( Total_Votes int, ...
5
votes
3answers
209 views

SQL Server PIVOT perhaps?

SELECT Name1, Name2, Value FROM mytable gives me the following result set: Name1 Name2 Value A P1 1 A P2 1 A P3 2 B P1 3 B P2 1 B P4 1 How do I ...
5
votes
2answers
539 views

WP7 Photo Viewer Control Available? [closed]

Possible Duplicate: How to make or use a standard Image Viewer for WP7 I'm looking for a control that's very similar to what WP7 has in the camera hub. It would be like a pivot control ...
5
votes
1answer
439 views

Rails, two dimensional table, pivot, nested hash loops

I am building grade-book report - a two dimensional table that shows lesson names going horizontally and a list of students going vertically. Student Name | LessonID x | LessonID x | LessonID x ...
5
votes
3answers
1k views

DataBound Pivot control is not creating the first PivotItem

In a Windows Phone 7 page I have the following control: <controls:Pivot x:Name="Pivoter" Title="{Binding Name}" TitleTemplate="{StaticResource PivotTitleTemplate}" ...
5
votes
2answers
273 views

Help me write a SQL Crosstab query

I have 3 tables that look like this: tblVideo: VideoID | Video Name 1 video 1 2 video 2 3 video 3 4 ...
5
votes
2answers
501 views

Free OLAP solution for .NET running on Mono / MySQL

I'm developing my university graduation project and I'd like to include an OLAP-based reporting module. In the past, I've used Mondrian with JPivot as an OLAP solution for Java projects and I'm ...
5
votes
2answers
2k views

Best way to flatten/denormalize SQL lookup tables?

I have a bunch of tables like this: Lookup_HealthCheckupRisks ------------ ID Name 1 Anemia 2 Anorexic 3 Bulemic 4 Depression ... 122 Syphilis PatientRisksOnCheckup ------------------ ...
5
votes
1answer
5k views

SQL Server - Dynamic PIVOT Table - SQL Injection

Sorry for the long question but this contains all the SQL I've used to test the scenario to hopefully make it clear as to what I'm doing. I'm build up some dynamic SQL to produce a PIVOT table in SQL ...
5
votes
4answers
5k views

Pivot Chart Creation Using Access 2007 VBA

OK there are absolutely no good articles on the internet that I can find that explain or have code examples on how to create a pivot chart using VBA. I need this because I need the pivot chart to show ...
5
votes
5answers
13k views

SQL Server 2005, turn columns into rows

I am trying to turn a table 90 degrees: make columns rows. No PIVOT is allowed since PIVOT requires aggregate functions. Example: I have a table with the columns: ID int, ISO char(2), Text ...
4
votes
2answers
142 views

Can you subtotal rows and/or columns in a pivot table?

I have a set of queries that outputs a pivot table. Is it possible to obtain row and/or column subtotals for a pivot table ? My table I am selecting from looks like this Site FormID ...
4
votes
2answers
210 views

SQL Server pivot vs. multiple join

What is more efficient to use in SQL Server 2005: PIVOT or MULTIPLE JOIN? For example, I got this query using two joins: SELECT p.name, pc1.code as code1, pc2.code as code2 FROM product p INNER JOIN ...
4
votes
3answers
230 views

Flattening of a 1 row table into a key-value pair table

What's the best way to get a key-value pair result set that represents column-value in a row? Given the following table A with only 1 row Column1 Column2 Column3 ... Value1 Value2 Value3 I want ...
4
votes
2answers
168 views

Pivot data in T-SQL

I have a group of people. Lets call them A,B,C. I have a table that shows how much they were paid each month.... PERSON|MONTH|PAID A JAN 10 A FEB 20 B JAN 10 B FEB ...
4
votes
5answers
104 views

Tricky MySQL query instead of a Python script to achieve the result?

Before I set out to write a Python script, I want to see if MySQL alone can produce the result. I have a list of products : PID Product ----------- 1 AAA 2 ABC 3 BAC 4 CAB 5 CBA I have ...
4
votes
4answers
68 views

Merge SQL results by creating new field?

I'd like to take two records like this: Id Fname Lname Email ------------------------------------ 1 John Doe jdoe@example.com 2 John Doe doej1@place.net And combine them in such ...
4
votes
1answer
231 views

Complicated Pivot

I have reduced a complex schema to the following samples Students StudentID int, Name varchar(50) 1, Bill 2, Amy 3, Beth 4, Scott 5, Steve Classes ClassID int, Name varchar(50), Period ...
4
votes
2answers
1k views

jquery Pivot Table

I've been researching different jQuery or Javascript based Pivot tables. I've found a couple (http://gumption.org/2004/pivot_table/test_page.html and http://oat.openlinksw.com/). These 2 apps fail ...
4
votes
1answer
283 views

Combining like data from columns into single row

I'm trying to combine partial contents of rows that are the result set of a query from SQL Server 2005 that reads a .CSV. Here's a simplified version of the data I have: objectID | value1 | value2 ...
4
votes
2answers
1k views

Oracle SQL pivot query

I have data in a table as seen below: MONTH VALUE 1 100 2 200 3 300 4 400 5 500 6 600 I want to write a SQL query so that result is given as below: MONTH_JAN MONTH_FEB ...
4
votes
3answers
185 views

Convert tables with “id,attribute,value” columns to “id,attribute1,attribute2,…”

I've got a table in database that looks like this: CustomerId Attribute Value ================================ 30 Name John 30 Surname Smith 30 ...
4
votes
2answers
227 views

how do you pivot sql data without aggregating a column

I have the following output in a query. SKILL LEVEL SCORERANGE ----------------------------------------------------------------------------- ...
4
votes
3answers
347 views

SQL Rows to Columns

I have below table structure in MS SQL AirQuoteID Name SalesValue 7 M 49.50 7 N 23.10 7 +45 233.20 7 ...
4
votes
1answer
306 views

SQL AdventureWorks count employees by gender by city

I want to count the cities by gender, like this; City GenderFCount GenderMCount Redmond 10 20 Here is my query gets city and gender in AdventureWorks database select Gender,City ...
4
votes
2answers
555 views

SQL Pivot table error-using variable gives syntax error

Hi my coworker came to me with this error and now I am hooked and trying to figure it out, hope some of the experts can help us! Thanks so much! When I execute Step6 we get this error: Msg 102, Level ...
4
votes
3answers
701 views

SQl rows to columns conversion

I have a table ClassAttendance and I'm using MSSQL 2005 studentID attendanceDate status ------------------------------------- *1004 2010-03-17 0 1005 2010-03-17 ...
4
votes
1answer
1k views

Pivot - SQL - values from SubQuery

I have a simple query like this.. USE AdventureWorks; GO SELECT DaysToManufacture, AVG(StandardCost) AS AverageCost FROM Production.Product GROUP BY DaysToManufacture; DaysToManufacture ...
4
votes
2answers
937 views

Oracle: pivot (coalesce) some counts onto a single row?

update: what I was calling coalesce I should have been calling pivot. I'm extracting some daily usage counts from a log table. I can easily get this data one row per date/item, but I would like to ...

1 2 3 4 5 14