We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原因:程序内部使用 PROC SQL 生成数据集,在 PROC SQL 中,使用了 CAT 函数家族进行字符串的连接。在 PROC SQL 中,CAT 函数返回值始终为 200(即便事先指定了变量的 length = 32767),导致 sql 表达式的结果被截断。
CAT
length = 32767
解决办法:改用字符串连接符 ||,并配合 left, trim, strip 去除前后空格。
||
left
trim
strip
The text was updated successfully, but these errors were encountered:
537306a
Sorry, something went wrong.
No branches or pull requests
原因:程序内部使用 PROC SQL 生成数据集,在 PROC SQL 中,使用了
CAT
函数家族进行字符串的连接。在 PROC SQL 中,CAT
函数返回值始终为 200(即便事先指定了变量的length = 32767
),导致 sql 表达式的结果被截断。解决办法:改用字符串连接符
||
,并配合left
,trim
,strip
去除前后空格。The text was updated successfully, but these errors were encountered: