SASProgramming

SAS PROGRAMMING

SAS - certifications and courses

  • 2018 Course "Statistics I: Introduction to ANOVA, Regression, and Logistic Regression"
  • 2017 Certification "Base programming for SAS 9"
  • 2017 Course "Introduction to statistical concept"
  • 2017 Course "SAS Macro 1"
  • 2017 Course "SAS Programming 2"
  • 2015 Course "SAS Programming 1"

proc sql;
create table TEST as 
  select distinct t1.Name, t2.Surname 
  from names_table t1 inner join
       surnames_table t2 on (t1.key_person=t2.key_person)
  order by key_person;
run;
quit;