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 / anil
data abc;
set xyz;
count=1;
length Distance$ 10;
if mails<=50 then Distance='0-50';
else if 50 < mails <= 100 then Distance='51-100';
else if 100<mails <= 150 then Distance='101-150';
run;
proc print;
run;
proc sql;
select Distance,sum(count)as NO_OFCITY
from abc
group by Distance;
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are triggers and its types?
Explain the types of joins in sql?
What is natural join in sql?
What is sql*plus?
what is a unique key ? : Sql dba
Write a sql select query that only returns each name only once from a table?
What type of join is sql join?
What is the difference between subquery and correlated query?
What is a common use of group by in sql?
What are the parts of a basic sql query?
Does pdo prevent sql injection?
What is rank () in sql?
What is type and rowtype in pl sql?
How long will it take to learn pl sql?
Is like operator in sql case sensitive?