write a query row to column follwing source?
quarter sales
q1 5000
q1 9000
q1 7000
q1 6000
q2 5000
q2 4000
q2 3000
q2 1000
q3 4000
q3 3000
q3 1000
q3 2000
q4 5000
q4 400
i want the output?
q1 q2 q3 q4
sales
Answers were Sorted based on User's Feedback
Answer / ankit kansal
Hi All,
select sales,sum(q1),sum(q2),sum(q3),sum(q4)
from
select 'sales' as sales
,case when quarter='q1' then sales else 0 end case as q1
...q2
...q3
...q4
)temp group by sales;
http://deepinopensource.blogspot.in/
| Is This Answer Correct ? | 1 Yes | 0 No |
It wouldn't work many to one concept for Normalizer.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gm
SQL:
select quarter, sales from table_name
group by quarter, sales;
Informatica:
Source-SQ-Exp-Normalizer Trans.-Tgt
In Normalizer Transformation we can do row into column.
| Is This Answer Correct ? | 4 Yes | 7 No |
What are the new features of informatica 9.x in developer level?
can we import source table without using source qualifier? if yes then how? if no then why?
What is the difference between Junk and Confirmed Dimention? where can be used htat one in Informatica?
how can we load starting with 11th record of a table from source to target
How do you manage the Parameter files while migrating your data from one environment to another environment?
server hot-ws270 is connect to Repository B. What does it mean?
How to Create a folder using pmrep command?
How do you use reject loader.
hi guys i have an question how do you find out weather the column is numeric or combination of char and numbers or it contains char,numeric and special characters.
How can you complete unrcoverable sessions?
Design time, run time. If you don't create parameter what will happen
What are the methods for creating reusable transforamtions?