proc sql;
create table sasuser.qiang_pom4 as
select a.*, b.dif_dates, b.log_dif_dates
from sasuser.qiang_pom4 a left join temp b
on a.hotel_id = b.hotel_id and a.customer_id=b.customer_id anda.review_date = b.review_date;
请注明:姓名-公司-职位
以便审核进群资格,未注明则拒绝
雾青藤 发表于 2013-10-17 23:02 新建表 sasuser.qiang_pom4,里面存表 sasuser.qiang_pom4的所有字段和temp表中的dif_dates和log_dif_dates ...