l*****8 发帖数: 483 | 1 我用SAS 连接oracle, 一个column name customer_, label customer#
我的问题是在我select column的时候,我只能选择 customer#, 如果用customer_ 就说
invalid identifier。 之所以不能用label来选是因为我别的column 的label是由几个
单词组成的, 中间有空格。
我想问如何在select的时候选择colunm name而不是label.
非常感谢。
proc sql;
connect to oracle (user="&siebleun" orapw="&sieblepw" path="&SIEBLE");
create table active_cust as
select * from connection to oracle
(select customer#
from siebel.cx_mktg_sieb_customers_sites a
);
disconnect from oracle;
quit; |
|