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.
3
votes
3answers
32 views
Sql Server 2008 Row to Column
I have two tables, tempUsers and tempItems. These two tables have a one to many relationship.
When I use an inner join on these two tables the result looks like this:
**user | Category**
Jack | ...
0
votes
1answer
43 views
Modifying code to shorten & make it work
Got a code here I have made to automate processes this end. I need to modify my code to make it shorter and also to make it work.
Also when copying data across to the three spreadsheets ie TOTAL, ...
0
votes
3answers
40 views
How can I do Pivot query on number range and sort results?
I am looking for a MS SQL query (for use in SQL Reporting Services) to give me the following result:
JobCode 0-10 11-20 21-30 31-40 41-50
A 1 2 0 0 ...
1
vote
0answers
24 views
How to create count only the value from each column Excel
I try to create a pivot chart which can display something like the result below which only shows the counts for closed month within the open month, and leave other not closed month into the month ...
-1
votes
0answers
39 views
add textbox and button to Grid from pivot ItemsSurce
How can I add Button to the grid for the first Item and and textbox to another grid in the second item ?
Ican't find name GridItem - name not exist in code behind :(
I tried to find Visual Tree ...
0
votes
3answers
53 views
SQL to Parse a Key-Value String
I have a comma delimited string like this:
key1=value1,key2=value2,key3=value3,key1=value1.1,key2=value2.1,key3=value3.1
and I'd like to parse it into a table that looks like this:
Key1 Key2 ...
-1
votes
1answer
17 views
TRANSFORM and PIVOT in Access 2013 SQL
How can I get second table from first table using TRANSFORM and PIVOT functions:
TABLE_01
Config_ID | ConfigField | ConfigValue
-----------------------------------------
11 | ...
0
votes
1answer
33 views
Pandas stack unstack pivot hierarchical index - reshape dataframe
I have massaged a dataframe so it looks like this:
123
456
789
0AB
CDE
FGH
...
,,,
I would like to transform it, so it looks like this:
123789CDE...
4560ABFGH,,,
The pattern is this:
123 789 ...
0
votes
0answers
20 views
Dynamically generate the AS clause for Postgres crosstab
This is actually a follow up to Dynamically generate columns for crosstab in PostgreSQL
To be clear: if I have a dataset with a variable number of keys I cannot generate the AS clause?
Eg.
A table ...
1
vote
1answer
43 views
Pivot table with null column
Using sql server I want to create a pivot table that contains a null column. I tried:
SELECT account_no, SUM([500]) AS [500], SUM([NULL]) AS [the_null_col]
FROM (SELECT * FROM source_table) AS x
...
0
votes
1answer
28 views
Concatenate multiple rows in one row
I've been trying to do this until I can't figure it out how,
I just wanted to concatenate multiple rows into one row and make it the value of the final column query. To illustrate;
Initial Query:
...
0
votes
2answers
72 views
Oracle pivot with dynamic data
I am new to the oracle database and I am trying to use PIVOT to convert rows into columns. I have following tables..
table 1
solid solname
--------------
1 xxxxxx
2 yyyyyyy
table2
...
0
votes
2answers
38 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
42 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
60 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
35 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
50 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
42 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
39 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
40 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
74 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
66 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
31 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
30 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
40 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
25 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
36 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
40 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
98 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
56 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
69 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
22 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
19 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
33 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
49 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
20 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
61 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
39 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
31 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
64 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
25 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
21 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
72 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
57 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
32 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
64 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
76 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
64 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 ...


