我已经创建了一个SAS表,如select * from connection to oracle select * from mytable现在我想将SAS_Table的计数插入到另一个Oracle表中,所以我执行了以下操作connect to oracle (connection..!)execute( select count(*)
代码:count(case when to_char(app_last_updated_date_utc, 'HH24') ='00' then router_destination_code else NULL end) as "Hour 1",
count(case when to_char(app_last_updated_date_utc, 'HH24') = '01' the