1.

Write code to connect the Teradata.

Answer» data test; INPUT name$ WEIGHT; CARDS; a 25 b 30 c 35 d 40 ; run; proc SQL; select name, weight from test union all select 'Total', sum(weight) from test; quit;


Discussion

No Comment Found