I have one table A with one variable ID ( for identity ) and another table B, with variables ID, CITY, VAR3, VAR4.
In table A each ID occurs only once.
In table B each ID can have more then one record.
I want the number of ID:s in each CITY. An ID should be counted in each city it occurs, so the total number could be more than the number of individuals in table A.
The result should be presented in a table C, with variables CITY and N, where N = number of individuals in each city.
I think there is no need to use table A.
Do you have any suggestions how to solve this problem?
Thanks for any help.
proc sql;
create table want as
select
b.city,
count(distinct a.id) as Distinct_IDs
from
a
inner join b
on a.id=b.id
group by b.city;
quit;
Hi,
Well, you wouldn't need A as it doesn't add anything. Try:
proc sql;
create table C as
select distinct CITY,
count(ID) as N
from B
group by CITY;
quit;
true...unless there may be IDs in table B that you don't want counted...or if you needed other attributes on table A that weren't included in B....(assumes facts not in evidence).
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.