Question: Below is the table

city gender name
delhi male a
delhi female b
mumbai male c
mumbai female d
delhi male e

I want the o/p as follows:

male female
delhi 2 1
mumbai 1 1

Please help me in writing the query that can yield the o/p
mentioned above?

Answers were Sorted based on User's Feedback



Question: Below is the table city gender name delhi male ..

Answer / kavitha nedigunta

select city,
count(decode(lower(gender),'male','female',null)) male,
count(decode(lower(gender),'female','male',null)) female
from gen
group by city;

Is This Answer Correct ?    8 Yes 2 No

Question: Below is the table city gender name delhi male ..

Answer / sp

SELECT
city, COUNT(
CASE gender
WHEN 'male' THEN 'male'
END ) AS 'male' ,COUNT(
CASE gender
WHEN 'female' THEN 'female'
END ) AS 'female'
FROM info AS u group by city;

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is sql table?

0 Answers  


How many sql are there?

0 Answers  


Is sqlite good enough for production?

0 Answers  


How do I kill a query in postgresql?

0 Answers  


What is the purpose of cursors in pl/sql?

0 Answers  






What is sqlerrm?

0 Answers  


What is data profiling in sql?

0 Answers  


How does postgresql compare to mysql?

0 Answers  


How can you create an empty table from an existing table?

0 Answers  


What is the need of merge statement?

0 Answers  


What is pl/sql language case sensitive?

0 Answers  


What are the types pl/sql code blocks?

0 Answers  


Categories