The UNPIVOT syntax converts columnar data into row data, and vice versa for the PIVOT syntax. Not all databases support the UNPIVOT syntax but the functionality can be implemented.
0
votes
1answer
34 views
TSQL - UNPIVOT from Excel imported data
I have an Excel spreadsheet that imports into a table like so:
+-------------------------------------------------------------------------+
| Col1 Col2 Col3 Col4 ...
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
1answer
26 views
Sql Server: How do I unpivot with an alias?
I know that you can use an alias on a column with pivot, but I'd like to use an alias with unpivot as well.
select UserId
, ContactMethod
, ContactMethodValue
from Users
unpivot (
...
1
vote
1answer
46 views
unpivot a columns to generate rows
I have a query like this:
SELECT '35111212', '11245452', '42215512'...... and mor values.
This results
(No column name) (No column name) (No column name)
-------- -------- ...
0
votes
1answer
39 views
unpivot table different datatypes with cases
With the sql below I get the error my datatypes are not equal. C1 is varchar and C2 is a number. I found out pivot tables must be of the same datatype, but how would I convert the number into a ...
0
votes
0answers
25 views
Un-Pivot table in Excel 2011 on Mac
On Windows (Excel 2007), there is a way of unpivoting a table by pressing alt + d then p then selecting multiple consolidation ranges then I will create my page fields then finish. This creates a ...
2
votes
2answers
61 views
Transposing Dynamic Columns to Rows
I'd like to know how to unpivot Table_1 into Expected_Result_Table:
Table1
-----------------------------------------
Id abc brt ccc ddq eee fff gga hxx
...
2
votes
2answers
48 views
SQL case statements to change values
This is my code to do part of what I want to do:
SELECT uID, ColumnName, ColumnResult
FROM table
UNPIVOT
(
ColumnResult
for ColumnName in (COL1,COL2,COL3)
)u
This returns something like this:
...
0
votes
1answer
52 views
SQL Removing a filter from an unpivot table
I have this unpivot table and I wish to remove the filter that is applied to it.
DECLARE @colsPivot AS NVARCHAR(MAX),
@colsUnpivot as NVARCHAR(MAX),
@query AS NVARCHAR(MAX)
select ...
0
votes
3answers
91 views
sql: - replace and unpivot functions in a query
Fiddle Example here: http://sqlfiddle.com/#!3/419ec/3
SQL server 2008.
I was wondering whether someone can please explain to me what is going on in the select query below with the replace function ...
0
votes
1answer
112 views
How Do I Convert Horizontal Data Into Two Separate Vertical Tables With Conditions in MS SQL 2005
I have a sort of brute for solution for the following problem, but I'm sure someone here will have an elegant solution.
I have the following horizontally oriented table.
| Person | Trait1 | Trait2 ...
-1
votes
2answers
142 views
Can anyone write query for this?
My table is as below
recordId fwildcardId refNumber wildcardName wildcardValue comments
404450 154834 2 aaa p p
404450 154833 ...
-2
votes
1answer
43 views
Switching rows for columns and columns for rows
I have query like this:
SELECT
Column,
SUM(Row1) AS Row1,
SUM(Row2) AS Row2,
SUM(Row3) AS Row3,
SUM(Row4) AS Row4,
SUM(Row5) AS Row5,
...
1
vote
1answer
47 views
SQL Server : return most frequently occurring values (and counts) from across 9 columns in one table
I have a SQL Server 2005 database with a table (ExpenseFormItems) that (among other things) stores street addresses across 11 columns (fromtravel, totravel, totravel1, totravel2, ...
0
votes
2answers
342 views
SQL Server Transpose (maybe pivot?) multiple rows into one column
My situation is this:
I have a survey with 400 users (rows) answering 76 questions (columns). These users already have an ID in the database. I've created a table that contains the questions per ...
0
votes
1answer
186 views
SQL Server: Dynamic pivot with headers to include column name and date
I am trying to use dynamic pivot and need help on converting rows to columns
The table looks like:
ID expense revenue date
1 43 45 12-31-2012
1 32 32 01-01-2013
3 ...
0
votes
1answer
155 views
How do I Pivot Vertical Data to Horizontal Data SQL with Variable Row Lengths?
Okay I have the following table.
Name ID Website
Aaron | 2305 | CoolSave1
Aaron | 8464 | DiscoWorld1
Adriana | 2956 | NewCin1
Adriana | 5991 | NewCin2
Adriana | 4563 NewCin3
I ...
-2
votes
1answer
96 views
How to join row values to column names in a dynamic query
I am developing an application that allows configurable questions and answers. Currently there can be up to 20 answers, but possibly less.
The structure I have is as follows:
Questions
ID - FormId ...
-2
votes
1answer
113 views
Dynamic Query in MySQL
I have a following table.
/------------------------------------\
| LocID | Year | Birth | Death | Abc |
|------------------------------------|
| 1 | 2011 | 100 | 60 | 10 |
...
1
vote
3answers
50 views
How to write a query which will result in the following format?
I think for this kind of result I have to use union
but the problem is that I dont know the number of columns.That's why I will not be able to use Union.
0
votes
3answers
60 views
how to write UNPIVOT correctly? [closed]
a have a table "research" with columns "ID", "code1", "code2", "soc0", "soc1" ... "socn"
where n = 40.
The values of cells are not important at the moment as I need to get a list of "soc" columns ...
-1
votes
2answers
33 views
Sql Column to Row joined tables
I have got two tables like that .
---------------------------------------------------
| AltID | Alan 1| Alan 2 | Alan 3 | UserId |
---------------------------------------------------
| 1 ...
0
votes
1answer
75 views
UNPIVOT with SQL Workbench/J and amazon aws redshift
I'm trying to use unpivot on a table. I'm using Workbench/J as a client to amazon redshift. The following select statement does not work:
SELECT
campaign_id,
C.B,
C.A
FROM campaign
UNPIVOT
...
1
vote
2answers
282 views
SQL - Convert values, count number of instances across multiple columns
I'm very new to SQL, and I'm not sure how to accomplish the following task: I have a set of data in a table, and I need to convert the data into one of two values, then adding up the totals per row in ...
0
votes
1answer
33 views
static column name in pivot table
DECLARE @cols AS NVARCHAR(MAX)
DECLARE @query AS NVARCHAR(MAX)
select @cols = '[1015],[1060],[1261],[1373]'
print @cols
set @query = 'SELECT header, ' + @cols + '
from
...
0
votes
1answer
64 views
Pivot table data in tabular format, first column should be column name and rest should be value
I just want to compare products that's why I need to show products with there attributes in column format. The First column will show attributes and rest of column shows attributes value for each ...
0
votes
2answers
78 views
SQL Server Exact Table Transpose
How do you achieve an exact transpose in SQL?
Month | High | Low | Avg
-------------------------
Jan | 10 | 9 | 9.5
-------------------------
Feb | 8 | 7 | 7.5
-------------------------
...
0
votes
1answer
207 views
Transpose column with rows
I've got a long query that produce some values. The identifier names are too long. And I prefer to have the resultset in 2 columns called "column name" and "column value".
IE for the following query ...
-4
votes
1answer
72 views
SQL Pivot based on multiple columns
Hi I am New to SQL Pivoting
I have different requirement where i need to Pivot data based on multiple columns(Q1,Q2,Q3,Q4) based on Categories for Programs. Please advice how can I achieve this?
All ...
0
votes
2answers
134 views
Add more columns for each value of another column?
I have this kind of table :
Name Date Value
-----------------------
Test 1/1/2001 10
Test 2/1/2001 17
Test 3/1/2001 52
Foo 5/4/2011 15
Foo 6/4/2011 321
My 15/5/2005 36
My ...
0
votes
1answer
211 views
sql server group columns as rows (pivot?)
I've got this result data in SQL Server 2008 R2
id Size Acted Sum Avg1 Avg2 A1 A2 A3
1 3921 39 690 17.69 0.18 NULL NULL NULL
40 11979 ...
0
votes
1answer
62 views
Transpose and insert multiple rows with differing values
I have a more complicated version of the following table:
ID | FIRST | LAST | EMAIL
1 | John | Doe | jdoe@example.com
1 | Mack | Johnson | mjohnson@example.com
1 | Steven | Michaels ...
1
vote
2answers
58 views
How to stack data with SQL Server
Okay, so I have data with some large number of columns, say 400.
UID, ID, ID, var1, var2, . . . var400
1, 23, 4651, 0, 0, . . . 1
2, 47, 8567, 1, 1, . . . 5
I need it stacked so ...
1
vote
2answers
118 views
Populate Column Data based on source table in T-SQL
I'm not sure my question is even worded correctly but here goes.
I have a table called Contacts that has FK references to tables Address, Email, Phone (these have 1 to many with Contacts). I need to ...
0
votes
1answer
69 views
Sorting data for PIVOT source
Imagine a table (key-value) with the Attributes and the parent table with Lots.
LotId SomeText
----------- --------
1 Hello
2 World
AttributeId LotId Val Kind
...
-1
votes
1answer
31 views
Pivot with multiple colums and rows
Could you help me to achieve the following
I have this SQL output table
DateWeek Keep_1 This_1 Order_1 Keep_2 This_2 Order_2 Keep_1-Keep_2 This_1-This_2 Order_1-Order_2
1/1/2013 9 8 7 ...
2
votes
1answer
109 views
How to replace a functional (many) OUTER APPLY (SELECT * FROM)
Applies to Microsoft SQL Server 2008 R2.
The problem is
If we have a few dozen Outer Apply (30) then they begin to work pretty slowly. In the middle of the Outer Apply I have something more ...
1
vote
2answers
82 views
SQL query to get the resultset in two columns only
I have this table:
id fName lName Address PostCode ContactNumber
-----------------------------------------------------
1 Tom Daley London EC1 4EQ 075825485665
2 Jessica Ennis ...
1
vote
2answers
71 views
SQL order pivot result by month
I need to order the rows based on a month or order rather than alphabecially.
When I run the query below I get the following result
Col Mon Tue Wed Thu Fri
--- --- --- --- --- ---
Feb 1 2 3 4 ...
6
votes
1answer
435 views
SQL transpose full table
I need to do the following transpose in MS SQL
from:
Day A B
---------
Mon 1 2
Tue 3 4
Wed 5 6
Thu 7 8
Fri 9 0
To the following:
Value Mon Tue Wed Thu Fri
--------------------------
...
0
votes
2answers
308 views
Is it possible to have multiple pivots using the same pivot column using SQL Server
I am facing the following challenge. I need to rotate table data twice over the same column.
Here's a screenshot of the data.
I want to have one row for each Item ID containing both the purchasing ...
1
vote
1answer
56 views
Unpivot tax data
I have data in this form:
department_id | VAT_id | Tax_amount | Net_amount | Gross_amount | Date | Invoice_no
1 | 3 | 10 | 90 | 100 | 20130101 | A5
...
2
votes
2answers
49 views
How can I insert records from one table into second table
The current table is not setup for growth and I'd like to migrate the existing data to a table better suited for expansion. Let me explain:
The current table is set like:
...
3
votes
3answers
224 views
How to select all values that are not numeric across multiple columns in SQL Server?
I have one table Prices
ID Price_1 Price_2 Price_3
P1 10 11 12
P2 13 14 15
P3 aa 16 bb
P4 19 cc 20
As you can see from above, some values from columns ...
0
votes
2answers
68 views
Complex aggregration view how to
Complex aggregration view how to
I have a table ( Table A ) with [payment type],[Agent],[Amount Credit] and [Amount Debit]. Now I am looking for a particular view of this data .
I want for EACH ...
3
votes
2answers
146 views
SQL Server PIVOT functionality
If we PIVOT any table and UNPIVOT that table do we get our original table?
0
votes
2answers
150 views
MySQL - turn table into different table
I'm probably not seeing things very clear at this moment, but I have a table in MySQL which looks like this:
ID | a | b | c
1 | a1 | b1 | c1
2 | a2 | b2 | c2
For some reason (actually a join ...
1
vote
5answers
117 views
Select columns into rows for export
I have a database table called 'transactions' with multiple columns. For each transactions row i need to produce an export with one row per column from a specified list
Transactions table
ID, ...
0
votes
1answer
114 views
UNPIVOT on an indeterminate number of columns
How can I write a query that will unpivot a table that always has 1 row and many columns to a result set that has 2 columns: column_name and value. I understand the underlying structure of the table ...
1
vote
1answer
225 views
SSIS ETL Unpivot transformation to T-SQL Unpivot
I am trying to convert some SSIS ETL into sql Server code. Old ETl was written for 2005 and new T-SQL code is being written for 2012. I have the following data being transformed in SSIS ETL:
Source ...



