我在SAS 4GL中全新......
是否可以从表中提取哪些列是主键还是复合主键的一部分?我需要将它们的值合并到输出数据集的一列中。
问题是,作为输入,我可以得到不同的表格,而且我不了解他们的定义。
答案 0 :(得分:4)
如果定义了索引,那么您可以找出该索引中使用的变量。例如见:
data blah(index=(name));
set sashelp.class;
run;
proc contents data=blah out=blahconts;
run;
blahconts
包含的列指示name
位于简单索引中,并且总共有1个索引。
此外,您可以使用外键约束,例如this SAS documentation example中的以下内容:
proc sql;
create table work.mystates
(state char(15),
population num,
continent char(15),
/* contraint specifications */
constraint prim_key primary key(state),
constraint population check(population gt 0),
constraint continent check(continent in ('North America', 'Oceania')));
create table work.uspostal
(name char(15),
code char(2) not null, /* constraint specified as */
/* a column attribute */
constraint for_key foreign key(name) /* links NAME to the */
references work.mystates /* primary key in MYSTATES */
on delete restrict /* forbids deletions to STATE */
/* unless there is no */
/* matching NAME value */
on update set null); /* allows updates to STATE, */
/* changes matching NAME */
/* values to missing */
quit;
proc contents data=uspostal out=postalconts;
run;
proc sql;
describe table constraints uspostal;
quit;
将约束信息写入输出窗口。从输出数据集中,您可以看到变量位于简单索引中。您可以在ODS OUTPUT中包装其中任何一个(PROC CONTENTS
或DESCRIBE TABLE CONSTRAINTS
)以获取数据集的信息:
ods output IntegrityConstraints=postalICs;
proc contents data=uspostal out=postalconts;
run;
ods output close;
或
ods output IntegrityConstraints=postalICs;
proc sql;
describe table constraints uspostal;
quit;
ods output close;