sas导入csv数据错误


205        data WORK.b    ;
206        %let _EFIERR_ = 0; /* set the ERROR detection macro variable */
207        infile 'C:\Users\Administrator\Desktop\1.CSV' delimiter = ',' MISSOVER DSD
207! lrecl=32767
208    firstobs=2 ;
209           informat VAR1 $best12.;
                            --------
                            48
ERROR 48-59: 输入格式 $BEST 没有找到或无法加载。

210           format VAR1 $best12.;
                          --------
                          48
ERROR 48-59: 输出格式 $BEST 没有找到或无法加载。

211        input
212                    VAR1  $
213        ;
214        if _ERROR_ then call symputx('_EFIERR_',1);  /* set ERROR detection macro variable
214! */
215        run;