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.

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
  • 1186 views
  • 2 likes
  • 2 in conversation