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
pls give me answer. i want urgent
Answer Posted / anjan ghosh
create table xyz ( x varchar2(30),y varchar2(30),z number);
insert into xyz values (6 , 'HEBBAL' ,115);
select count(*) as No_of_city , '0-50' as Distance from xyz
where z between 0 and 50
union all
select count(*)as No_of_city ,'51-100' as Distance from
xyz where z between 51 and 100
union all
select count(*)as No_of_city ,'101-150' as Distance from
xyz where z between 51 and 100
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is database white box testing and black box testing?
What is procedure and function in sql?
What is the difference between view and stored procedure?
Difference between table function and pipelined function?
What is the difference between rollback and rollback to statements?
how to escape special characters in sql statements? : Sql dba
How to write a query to show the details of a student from students table whose
How do I run a sql script?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
What is the current version of postgresql?
What is trigger price?
How many sectors are in a partition?
What is online transaction processing (oltp)?
How global cursor can be declare with dynamic trigger ?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?