テーブルがあるとします
A | B
===============
Dan | Jack
April | Lois
Matt | Davie
Andrew | Sally
そしてテーブルを作りたい
C
======
Dan
April
Matt
Andrew
Jack
Lois
Davie
Sally
SAS を使用しproc sql
ます。どうやってやるの?
あなたが proc sql を要求したことは知っていますが、データ ステップでそれを行う方法は次のとおりです。私はそれが簡単だと思います:
data table2(keep=c);
set table1;
c = a;
output;
c = b;
output;
run;
data have;
input A $ B $;
datalines;
Dan Jack
April Lois
Matt Davie
Andrew Sally
;
run;
proc sql;
create table want as
select A as name from have
union all
select B as name from have;
quit;
proc sql;
create table combine as
select name
from one
union
select name
from two;
quit;