%NRQUOTE'删除'的改进

时间:2016-08-09 02:54:21

标签: sas sas-dis

我有以下代码可行,但我想知道是否有人可以提出更好的方法来“删除”%nrquote。我必须添加一个%SUBSTR函数,它有效,但我很想知道是否还有其他建议,如果有人能帮助解释为什么代码在没有%let的情况下不起作用mvar宏定义中的语句。

/* Automatically generated by DI Studio - cannot change */
%let _where_clause = %nrquote(name = %'Henry%');
%let _mac1 = %nrquote(lemk);
%let _variable = weight;
%let _input0 = sashelp.class;
/* End of auto-generated code */

options mprint;

%macro mvar;
    %if &_where_clause ^= %then %do;
        /* Re-assign the _where_clause variable to 'remove' %nrquote */
        %let _where_clause = %substr(&_where_clause,1);
        where &_where_clause
    %end;
%mend mvar;

proc sql;
    select &_variable into :&_mac1
    from &_input0
    %mvar
    ;
quit;

如果没有%let语句,代码将失败并显示以下错误:

NOTE: Line generated by the macro variable "_WHERE_CLAUSE".
1     name = 'Henry'
             -
             22
MPRINT(MVAR):   where name = '
NOTE: Line generated by the macro variable "_WHERE_CLAUSE".
1     name = 'Henry'
             -
             200
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string,
              a numeric constant, a datetime constant, a missing value, (, *, +, -, ALL, ANY,
              BTRIM, CALCULATED, CASE, INPUT, PUT, SELECT, SOME, SUBSTRING, TRANSLATE, USER.

ERROR 200-322: The symbol is not recognized and will be ignored.

114          ;
MPRINT(MVAR):  Henry'

1 个答案:

答案 0 :(得分:2)

你需要%UNQUOTE,这是%LET发生的事情,它不引用引用的引号。

Change 
where &_where_clause
to 
where %unquote(&_where_clause)