Улучшение%NRQUOTE "удаление"

У меня есть следующий фрагмент кода, который работает, но я хотел бы знать, может ли кто-нибудь придумать лучший способ "удалить" %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 ответ

Решение

Вам нужен%UNQUOTE, что и происходит с%LET, это кавычки без кавычек.

Change 
where &_where_clause
to 
where %unquote(&_where_clause)
Другие вопросы по тегам