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

0
votes
2answers
35 views

return one row from join table with same field name

block : ------------- | id | name | ------------- | 1 | test| ------------- block relation coords ------------- | id | blockid| coordid ------------- | 1 | 1 | 1 ------------- | 1 | 1 | 2 ...
0
votes
1answer
33 views

Transpose Rows to Headers in MYSQL

I'm trying to transpose a very basic output for use in a web application. As my strengths lie moreso in mysql, I'd like to this before it hits the app. What I currently have is: date value ...
-1
votes
1answer
47 views

SQL Server : Pivot with custom column names

I need to pivot the Table with custom column name's. Please see the table format below. Current format! ID question Answer 4482515 I would like to be informed ...
0
votes
2answers
32 views

Pivot a single row

im kinda new on using pivot. how can i pivot this record from this: P1AVERAGE P2AVERAGE P3AVERAGE -> column name 1.25 1.50 1.75 to this: AVERAGENAME AVERAGESCORE ...
0
votes
0answers
41 views

Syntax error when using php to serve up dynamic sql pivot table

This dynamic pivot sql runs perfectly in MS Studio, however I can't get it to run with php on the server. I get Incorrect syntax near ','. And Incorrect syntax near 'p'. I've tried every type of ...
0
votes
1answer
38 views

Sql pivot between 2 tables

Table 1 (Resv) ResvID | ResvDateTime | BufferInd ----------------------------------------------- 1 | 2012-06-11 08:30:00.000 | 1 2 | 2012-06-11 08:30:00.000 | 2 4 ...
1
vote
2answers
37 views

SQL query for sales report by date

I have a table of sales leads: CREATE TABLE "lead" ( "id" serial NOT NULL PRIMARY KEY, "marketer" varchar(500) NOT NULL, "date_set" varchar(500) NOT NULL ) ; INSERT INTO lead VALUES (1, ...
1
vote
2answers
32 views

Sum by month and put months as columns

Background I have time series data on a monthly basis and I would like to sum values for each ID, grouped by month and then have the month names as columns rather than as rows. Example ...
1
vote
2answers
70 views

How can I create a table using distinct values from a column as the column names for the new table?

I have a table with a Tag column with about 1000 distinct tags. I'd like to create a new table with a column for each distinct tag, the column name would be the tag value. Is there a nice and easy way ...
0
votes
1answer
46 views

SQL server : Convert rows into columns

Output from CTE: colName ----------------------- branch1 branch1 branch1 unclassified I want to convert the rows into columns like: colName colName colName colName ...
0
votes
1answer
28 views

SQL Select statement to present data multidimentional

I'm Working on a complex SQL Statement to present data in many dimensions, --------------------------------- YEAR | MONTH | ARTICLVALUE | --------------------------------- 2013 01 ...
0
votes
2answers
25 views

ISNULL syntax in SQL pivot

I have the following bit of code SELECT @columns = COALESCE(@columns + ', ','') + QUOTENAME(PERIOD) FROM (SELECT DISTINCT PERIOD FROM @p_l_summary) AS b ORDER BY b.PERIOD which works perfectly ...
0
votes
1answer
35 views

SQL database, Need max date for pivot table

Here is my issue. I have a sub query that has several joins (one of the tables do not have a person_id) I have a pivot table created off this data and receive the results of 6 rows for my test data. ...
0
votes
0answers
20 views

Updating a preserved state in Windows Phone 8

I have an MVVM WP8 app that loads a large Pivot to start. From one of my pivots, users can filter one of the lists on that pivot item. I want to display the filter options on a separate page, ...
2
votes
1answer
33 views

How to transpose mysql table rows into columns

Here is what my current mysql table looks like: PunchID EmpID PunchEvent PunchDateTime 1 0456 clockin 5/14/2013 8:36:26 AM 48 0456 breakout 5/14/2013 12:01:29 PM 53 ...
0
votes
1answer
34 views

Pivot with a table variable

I'm unable to use a pivot the data of a table variable. Its giving following error on run-time: "Must declare the scalar variable @reportData" I have tried as mentioned below DECLARE @reportData ...
2
votes
1answer
77 views

Combine multiple rows into single row with separate columns in SQL

I'm having the following table structure and the expected output is listed below how to achieve the result id - date - score 1 - 2013/04/13 - 100 2 - 2013/04/14 - 92 3 - 2013/04/15 - 33 ...
0
votes
0answers
48 views

Pivot table -/+ aggregation

I'm having trouble with the below query. I need to find the percentage increase or decrease between years for enrollment. For some reason I'm getting multiple line items and my output is incorrect. ...
0
votes
2answers
63 views

SQL Pivot table for each hour

I have table as below Prefix scandate A 1/2/2013 08:30 A 1/2/2013 08:45 B 1/2/2103 09:15 I need output with count in every hour i,e Time A B 08:30-09:30 2 ...
1
vote
1answer
20 views

Pivoting data in MS Access

I have a query that I've created to pull student IDs and meal items they have taken over a month long period. I would like to count the numbers of each item (Breakfast, Lunch, Snack) taken by a ...
0
votes
1answer
18 views

Need assistance understanding pivot table

Apologies for this pleading title! I have the following query which I need to pivot: select name, flag,count(*) as [thecount] from vwPopulationInformation group by name, flag a sample of what it ...
0
votes
1answer
28 views

TSQL - UNPIVOT from Excel imported data

I have an Excel spreadsheet that imports into a table like so: +-------------------------------------------------------------------------+ | Col1 Col2 Col3 Col4 ...
0
votes
1answer
39 views

pivot table and percentage comparison between columns

I'm new to using pivot tables with sql and have been stuck on this particular issue that I'm hoping someone can help. My script returns a list of assignments and counts the assignments for each year. ...
2
votes
2answers
33 views

TSQL - Unpivot multiple columns

How can I unpivot multiple columns in "one"? Right now I have an unpivot for each column but this creates a lot of empty rows. See the screenshot please. At the top you see the input data. At the ...
0
votes
0answers
17 views

ValueConverter based on Pivot SelectedIndex

I'd like to know how I can change a IValueConverter based on the Pivot SelectedIndex. I'd like to set different units for both my PivotItems. I'm using a ItemTemplate because the layout is the same. ...
1
vote
1answer
60 views

sql pivot summarize table and compare rows

I have this three table with many-to-many relation between account and bounse , i want to compare the bounse for each account with the previous month by subtract current month's bounse with the ...
-1
votes
2answers
35 views

How to count for each ID, how many of each Type of outcomes(1,2,3) has that ID diagnosised?

I have tried many times but i have no idea how to group the answer for each technician for each diagnosis outcome (Only three types 1,2,3) that they have? (For example, how many diagnosis outcome 1 ...
0
votes
1answer
29 views

Pivot table error

WHY, why, why? Do I get an error: "Msg 325, Level 15, State 1, Line 17 Incorrect syntax near 'PIVOT'. You may need to set the compatibility level of the current database to a higher value to enable ...
1
vote
1answer
35 views

Difficulty with Pivot in sql

I have two tables, title and territory. Territory tells me where the title is available: `title` - id - name `territory` - title_id (FK) - territory I want the output to look like this: id ...
1
vote
2answers
60 views

SQL: Turning Rows into Columns for Variable Number of Rows

I have two tables whose simplified structure looks like this: RESPONSES id created ACCESSORY VALUES id response_id sensor_id value I want to create a view that flattens all accessory values for a ...
1
vote
1answer
24 views

Pivot Table from Three Tables without Aggregate

Apologies for my lack of knowledge on this, I've researched here and elsewhere but have hit a brick wall (my brain). I'm trying to display the rates for a villa in a table like this: ...
0
votes
1answer
15 views

mysql pivoting - how can I fetch data from the same table into different columns?

I have a query that looks like this SELECT ps_target_ecpm, ps_actual_ecpm FROM publisher_stats JOIN domain ON domain.dmn_id = ps_dmn_id LEFT JOIN langue ON langue.lng_id = domain.default_lng_id WHERE ...
0
votes
4answers
70 views

Getting Rows in the form of Column Names

Input table format in SQL Server 2008 : *Name* *Department* 1) abcd IT 2) abcd ...
0
votes
2answers
52 views

SQL Developer pivot with unknown number of values into one column

I've been trying to figure out how to use the pivot function in SQL Developer for this one query I'm trying to do. I didn't find anything to really help me from previous posts so I was hoping someone ...
0
votes
1answer
24 views

How to use UNPIVOT Convert Column to Row Sql Server?

I want query UNPIVOT Cnvert Column to Rows with SQL Server 2008 R2. But it's Error **Msg 170, Level 15, State 1, Line 16 Line 16: Incorrect syntax near 'unpivot'.** Code: SELECT EmpNo, CDate, ...
1
vote
1answer
57 views

sql continuous column values from data for pivot table view

I have data in a table in this structure: Region | Date | Value A | 01/01/2014 | 100 A | 01/20/2014 | 50 A | 01/02/2014 | 200 A | 01/05/2014 | 300 B | ...
2
votes
2answers
75 views

Pivot millons of records

I have a table with 4 columns and more than 100 million records. Table Design: ID char(12) PK Type Char(2) PK (Values 1,2,3) DCID varchar(10) Null IND Varchar(2) Null (Values Y, N) This needs to ...
0
votes
1answer
62 views

Quicksort Linked List Pivot Last Element

I'm trying to implement a quicksort for sorting a CYCLIC LINKED LIST! There is a DoublyLinkedList which contains ListElements. The ListElement has the Element First, which has a reference to its ...
0
votes
0answers
21 views

MS-Access Pivot Chart

Could someone help me to sort and arrange the Pivot Chart in MS-Access please. I could do this easily in MS-Excel, but not in MS- Access. I need a gap in between each Task + Budget in MS- Access chart ...
1
vote
1answer
45 views

TSql Complex Pivot

I have a table like this... LEVEL Action Date User -------------------------------------------------- 1 Approve 01/01/2013 User1 2 ...
1
vote
1answer
46 views

TSQL Rows to Columns

I have the following table structure CREATE TABLE #T1 ( UniqueID varchar(100), DrivingFld INT, ColumnFld varchar(10) ) From this table, based on the DrivingFld field value, I would ...
0
votes
1answer
37 views

Increase width without moving image

I'm developing a drawing app, and I ran into a problem, and a possible solution would be to be able to resize horizontally (increase or decrease the width) of an image without altering it's pivot, but ...
0
votes
4answers
63 views

SQL Server query for grouping

I have a table with 2 columns plateno and alerts. table Data plateno alerts A 1 B 2 C 2 A 3 B 2 A 4 A 1 Now I want to get ...
0
votes
0answers
16 views

Caliburn.Micro's AddCustomConventions() function

I have some confuse in CM's custom convention. One of CM official samples show us, we can add convention in AddCustomConventions() method like this: ...
1
vote
2answers
44 views

change the column name while selecting from dyanamic table

Hi I have attendence query which will generate the attendence report with using PIVOT function Here's the procedure : declare @in_date DATETIME /*Select all the stagign entries related to ...
0
votes
0answers
58 views

Cross Pivot Table PL SQL

Can you help me build the query? I have to create a cross table between products. I guess it is best if I can show you. Here is the source table (cartesian product of customer and product table); ...
0
votes
2answers
40 views

Mysql Pivot View

I have a mysql table as below username interval totalmails User1 10:00 3 User2 10:00 1 User3 10:00 1 User6 10:00 4 User7 ...
2
votes
3answers
44 views

Pandas DataFrame from WB WDI data: combine year columns into “year” variable and merge rows

I have a dataset (.tsv file) with the following columns. (It's the World Bank's new WDI all-in all-time single-download dataset. Nice!) country countrycode varname 1960 1961 1962 afghanistan AFG GDP ...
0
votes
1answer
59 views

Query to arrange rows horizontally

I have 2 tables which I need to join and produce a third table with columns arranged horizontally. The tables are as follows: I need the output 2 from table1 and table2. I did some research and ...
0
votes
1answer
36 views

Including WHERE clause in Dynamic Pivot

I have created a working dynamic pivot. DECLARE @AttributeNames as NVARCHAR(MAX), @SQL as NVARCHAR(MAX); DECLARE @AssetGroup as NVARCHAR(MAX) = 'Water', @AssetType as NVARCHAR(MAX)= 'Water ...

1 2 3 4 5 33