December 16, 2013 at 7:07 am
Can Anyone please help me in below requirement
i have a row as below
1 AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH
I want the output as follows
AAAA BBBB CCCC DDDD
EEEE
FFFF
GGGG
HHHH
But i dont want to use UNPIVOT..
Thanks in advance
December 16, 2013 at 7:17 am
SELECT ColAAAA, ColBBBB, ColCCCC, ColDDDD, ColEEEE
FROM Sometables
CROSS APPLY (
SELECT colEEEE UNION ALL
SELECT colFFFF UNION ALL
SELECT colGGGG UNION ALL
SELECT colHHHH
) x
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 16, 2013 at 7:18 am
jeganbenitto.francis (12/16/2013)
Can Anyone please help me in below requirementi have a row as below
1 AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH
I want the output as follows
AAAA BBBB CCCC DDDD
EEEE
FFFF
GGGG
HHHH
But i dont want to use UNPIVOT..
Thanks in advance
the tool to use is the unpivot operator.
if you don't want to use it, then you could try using a stack of unions:
your fake data obscure the real issue a lot, hopefully this points you in the right direction.
SELECT AAAA,BBBB,CCCC,DDDD As DDDD UNION ALL
SELECT AAAA,BBBB,CCCC,EEEE As DDDD UNION ALL
SELECT AAAA,BBBB,CCCC,FFFF As DDDD UNION ALL
SELECT AAAA,BBBB,CCCC,GGGG As DDDD UNION ALL
SELECT AAAA,BBBB,CCCC,HHHH As DDDD
Lowell
December 16, 2013 at 7:28 am
ChrisM@Work ,
Thanks for your reply. I am getting below Error
Ambiguous column name colEEEE .
December 16, 2013 at 7:42 am
jeganbenitto.francis (12/16/2013)
ChrisM@Work ,Thanks for your reply. I am getting below Error
Ambiguous column name colEEEE .
Without a table name or column names to work with, I made up the names of the columns used in the query. Substitute your actual table name and column names.
Somewhere in my query you will have to name the output column - either the first select as a column alias, or after the table alias.
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply