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
The following code tagged with the SQL class:
SELECT RIGHT( SUSER_NAME(),LEN( SUSER_NAME())-CHARINDEX('\', SUSER_NAME()))
OUTPUTS:
SELECT RIGHT( SUSER_NAME(),LEN( SUSER_NAME())-CHARINDEX('\'
It appears that the \' escapes the rest of the string. If I add a space after the slash then it renders correctly (but my SQL code is then incorrect!
\'
SELECT RIGHT( SUSER_NAME(),LEN( SUSER_NAME())-CHARINDEX('\ ', SUSER_NAME()))
The text was updated successfully, but these errors were encountered:
fix for #163 (SQL scanner), declare 1.1.1
d3197be
Thank you, that was a pretty stupid bug :)
Sorry, something went wrong.
korny
No branches or pull requests
The following code tagged with the SQL class:
OUTPUTS:
It appears that the
\'
escapes the rest of the string. If I add a space after the slash then it renders correctly (but my SQL code is then incorrect!The text was updated successfully, but these errors were encountered: