BookmarkSubscribeRSS Feed
Prateek1
Obsidian | Level 7

hi ,

what should be the code for this question ?

 

select Product_ID, Age on Network fields and calculate Average,MIN,MAX age of network ,using PROC SQL ?

1 REPLY 1
Riteshdell
Quartz | Level 8

Firstly I didn't understand your question completly.

 

But some how I am managing to giving you ans.:

try this :

 

Proc sql;

select Product_id, avg(age),max(age),min(age) from X(library).Network group by Product_id;

run;

 

and Please post your question with more clearity.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 1169 views
  • 2 likes
  • 2 in conversation