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
What are joins in sql?
How do you write a subquery?
How is use pl and sql?
what are the authentication modes in sql server? How can it be changed? : Sql dba
Why trigger is used in sql?
what are the properties and different types of sub-queries? : Sql dba
What is a join?
Is vs as in pl sql?
What is the most important ddl statements in sql are?
Is primary key always clustered index?
How do you create an update query?
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba
what are different types of keys in sql?
How long will it take to learn pl sql?
What is sql query optimization?