835 proc sql; 836 create table cadd as select 'ARVIND CHATURVEDI Total' as SH_NAME,sum(INWARDDAY)as INWARDDAY, 837 sum(INWARDLMON) as INWARDLMON,sum(d1) as d1, sum(NCADAY) as NCADAY,sum(NCAMON) as NCAMON, 837! sum(NCALMON) as NCALMON, 838 sum(d2) as d2, 5 as sno from work.c where team=1 839 union all 840 select 'SAROJ SAMAL Total' as TM_NAME,sum(sum(INWARDDAY))as INWARDDAY,sum(sum(INWARDLMON)) as 840! INWARDLMON, 841 sum(sum(d1)) as d1, sum(sum(NCADAY)) as NCADAY,sum(sum(NCAMON)) as NCAMON, sum(sum(NCALMON)) as 841! NCALMON,sum(sum(d2)) as d2 ,5 as sno 842 from work.c where team=1; ERROR: Summary functions nested in this way are not supported. ERROR: Summary functions nested in this way are not supported. ERROR: Summary functions nested in this way are not supported. ERROR: Summary functions nested in this way are not supported. ERROR: Summary functions nested in this way are not supported. ERROR: Summary functions nested in this way are not supported. ERROR: Summary functions nested in this way are not supported. 843 run;
it showing error
... View more