BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
krishnaarrora
Calcite | Level 5

Hey, programmers, can anyone tell me a simple example, how we can use subqueries and group by together in a single query?

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
"a.sex" means variable sex is from table sashelp.class ( from sashelp.class as a )

View solution in original post

3 REPLIES 3
Ksharp
Super User
proc sql;
select sex,count(*) as n_person,
 (select sum(weight) from sashelp.class where sex=a.sex) as total_weight
 from sashelp.class as a
  group by sex;
quit;
krishnaarrora
Calcite | Level 5
what's that "a.sex" means in where condition in that subquery?
Ksharp
Super User
"a.sex" means variable sex is from table sashelp.class ( from sashelp.class as a )

SAS Innovate 2025: Register Today!

 

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1103 views
  • 0 likes
  • 2 in conversation