/*Dataset A*/ data A; input name $; cards; john tom emily ; run; /*Dataset B*/ data B; input ID; cards; 34 54 67 ; run; /*using cross join to perform one-to-many match*/ proc sql; create table C as select * from A,B; quit; /*print the dataset C*/ proc print data=C; run; Regards, Vishnu
... View more