|
Guys I am using SAS 8.2 version on windows xp platform , I am trying to do
something like this and I getting this warning in the Log can some body
explain me why and how to solve it
proc sql ;
36 create table test
37 (customer char(4) ,
38 item char(10) ,
39 units num,
40 unitcost num(8,2));
NOTE: Table WORK.TEST created, with 0 rows and 4 columns.
41 label customer = 'Customer number '
WARNING: This SAS global statement is not supported in PROC SQL. It has been
ignored.
42 item = 'Item purchased '
43 units = '# Units purchased '
44 unitcost = 'Unit cost'
45 format unitcost dollar12.2;
46 quit;
|