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 / apoorva garg
cityno cityname mails
1 BANGALORE 8KM
2 HSR LAYOUT 20KM
3 MEJISTIC 30KM
4 JAYADEVA 55KM
5 ITPL 80KM
6 HEBBAL 115KM
create table city(name varchar2(10), miles number);
insert into city values('bangalore',8)
insert into city values('hsr',20)
insert into city values('majestic',30)
insert into city values('jayadeva',55)
insert into city values('itpl',80)
insert into city values('hebbal',115)
DISTANCE NO.OFCITY
0-50KM 3
51-100KM 2
101-150KM 4
select * from city
select count(miles),miles
from
(select name,
CASE
WHEN (miles>=0 and miles <=50) THEN '0-50KM '
WHEN (miles>=51 and miles <=100) THEN '51-100KM '
WHEN (miles>=101 and miles <=150) THEN '101-151KM '
END miles
from city)
group by miles
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain autonomous transaction.
How to avoid using cursors? What to use instead of cursor and in what cases to do so?
How do you use collections in procedure to return the resultset?
What are the sql commands?
What is the use of procedures?
What is sqlite used for?
What is sql query optimization?
What is embedded sql with example?
How many types of functions are there in sql?
How do I make my sql query run faster?
what is a constraint? Tell me about its various levels. : Sql dba
What is the difference between having and a where in sql?
How to select 10 records from a table?
Is sql a microsoft product?
what is a trigger in mysql? Define different types of trigger. : Sql dba