配置单元通过sas execute在现有表上创建标志值

jchrr9hc  于 2021-06-25  发布在  Hive
关注(0)|答案(0)|浏览(218)

我是新来的配置单元,尝试通过sas studio在服务器上创建配置单元表。我一直在使用execute语句来运行hql,但是我一直在创建一个简单的标志值。我只想将“1”分配给现有表event1中的每一行。
我的代码没有错误,但找不到新变量eventflag:

proc sql;
connect using cen0;
execute (create temporary table event1 as
        select x, y, z
        from lab.t2_clctn
        where z IN ('7','3')     
         )       
by cen0;

    execute (alter table event1 add columns(eventflag string)) by cen0;
    execute (insert into table event1 (eventflag) value('1')) by cen0;

quit;

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题