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
CREATE TABLE DATA( ID INT, NAME CHAR(20), AGE INT, SALARY INT );
INSERT INTO DATA VALUES (101, 'A', 25, 55452),(102, 'B', 29, 66458),(103, 'C', 35, 36944);
Problematic Query:
WITH
i AS (SELECT `ID`, `NAME`, `AGE`, `SALARY` FROM `test`.`data` d WHERE `AGE`>25 AND `SALARY` > 10000)
SELECT * FROM i;
In the above subquery, the autocomplete doesn't work on typing the table alias i.e., "d. ".
Create the following table with the data:
Problematic Query:
In the above subquery, the autocomplete doesn't work on typing the table alias i.e., "d. ".
This issue seems to be similar to this.
Also, executing just the subquery also has the same auto-complete problem. But it works fine if the opening parenthesis is removed.
The user report can be found in SF >> 00943062
The text was updated successfully, but these errors were encountered: