wtite sql query following table are
city gender no
chennai male 40
chennai female 35
bangalore male 10
bangalore female 25
mumbai female 15
i want the output?
city male female
chennai 40 35
bangalore 10 25
mumbai null 15
Answers were Sorted based on User's Feedback
Answer / santosh kumar sarangi
select city,max(decode(gender,'male',no)) as male,
max(decode(gender,'female',no)) as female from table_name
group by city
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / gagan
Suppose first table as test created below create table test
(
city varchar2(50),
gender varchar2(50),
nmbr varchar2(50)
)
and keep all data in it as mentioned and then try to run
this query...
select a.city, a.nmbr as male, b.nmbr as female
from test a, test b
where a.gender = 'male' and b.gender = 'female' and b.city
= a.city
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / gagan
Suppose first table as test created below...
create table test
(
city varchar2(50),
gender varchar2(50),
nmbr varchar2(50)
)
and keep all data in it as mentioned and then try to run
this query...
select a.city, a.nmbr as male, b.nmbr as female
from test a, test b
where a.gender = 'male' and b.gender = 'female' and b.city
= a.city
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you load more than 1 max sal in each department through informatica or write sql query in oracle?
Differentiate between source qualifier and filter transformation?
What is surrogate key?
To import the flat file definition into the designer where should the flat file be placed?
In operator is used in which transformation in informatica 8.6.0
explain abt union t/r?
how many tasks are there in informatica ?
15 Answers DELL, iGate, TCS,
what is mystery dimension?
What is Code Page Compatibility?
can anyone explain me about retail domain project in informatica?
why we r using presql&postsql in source qualifier?
what is data modelling? what are types of modelling?In which suituation will use each one?