Tagged Questions
2
votes
2answers
1k views
TSQL - Help with UNPIVOT
I am transforming data from this legacy table:
Phones(ID int, PhoneNumber, IsCell bit, IsDeskPhone bit, IsPager bit, IsFax bit)
These bit fields are not nullables and, potentially, all four bit ...
1
vote
1answer
63 views
using a sub-query to populate unpivot columns list
I currently do not have access to a server to test this out on, but how would I go about doing something like the following
UNPIVOT (X for XY IN (
SELECT column_name AS [XY]
FROM ...
1
vote
2answers
69 views
sql server unpivoting table
I'm having trouble trying to unpivot the following table.
| operation | ...other columns... | A1 | B1 | C1 | A2 | B2 | C2 | A3 | B3 | C3 | ... |
into something like this...
| operation | ...
0
votes
1answer
1k views
t-sql most efficient row to column? crosstab for xml path, pivot
I am looking for the most performant way to turn rows into columns. I have a requirement to output the contents of the db (not actual schema below, but concept is similar) in both fixed width and ...
0
votes
1answer
512 views
Unpivot vs. Union queries in T-SQL 2008
Warning: This is a long question
The database that I am pulling data from has the table structure like this
Table: ClientSales
ClientSalesId int identity (1, 1) (PK)
ClientId int (FK)
...