Advertisement
Guest User

Untitled

a guest
Sep 26th, 2019
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.22 KB | None | 0 0
  1. PROC SQL;
  2.  
  3.     SELECT  date,
  4.         lic_num,
  5.         /* регион */
  6.         currency,
  7.         period,
  8.         sum(value * i) / sum(value)
  9.     FROM table_name
  10.     GROUP BY
  11.         date,
  12.         lic_num,
  13.         /* регион, */
  14.         currency,
  15.         period;
  16.  
  17. QUIT;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement