I Have A Table Like This.
Cityno Cityname Mails
1 Bangalore 8km
2 Hsr Layout 20km
3 Mejistic 30km
4 Jayadeva 55km
5 Itpl 80km
6 Hebbal 115km
I Have Data Like This
I Want O/p Like This
Distance No.ofcity
0-50km 3
51-100km 2
101-150km 4
And So On
Answer Posted / janani
select '0-50' distance, count(*) No.ofcity from table
where mails between 0 and 50
union
select '51-100' distance, count(*) No.ofcity from table
where mails between 51 and 100
union
select '101-150' distance, count(*) No.ofcity from table
where mails between 101 and 150
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
Which sql statement is used to delete data from a database?
What is sql indexing?
Does pdo prevent sql injection?
What is the meaning of disabling a trigger?
What is rowtype?
Explain constraints in sql?
Is postgresql a server?
What is using in sql?
what is a materialized view? : Sql dba
What is sql constant?
what does myisamchk do? : Sql dba
What are sql functions? Describe in brief different types of sql functions?
What is the process of copying data from table a to table b?
How many types of triggers exist in pl/sql?