You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to find index of a space between words in a string, CHARINDEX returns wrong result with '%sql' command, but yields the correct result with '%%sql' command:
%sql SELECT CHARINDEX(' ', 'AAA BBB) returns 1.
%%sql SELECT CHARINDEX(' ', 'AAA BBB) returns 4.
OS: Ubuntu Server 18.04
JupyterLab version: 2.1.5
The text was updated successfully, but these errors were encountered:
When trying to find index of a space between words in a string, CHARINDEX returns wrong result with '%sql' command, but yields the correct result with '%%sql' command:
%sql SELECT CHARINDEX(' ', 'AAA BBB)
returns 1.%%sql
SELECT CHARINDEX(' ', 'AAA BBB)
returns 4.The text was updated successfully, but these errors were encountered: