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 writing a ""FIELDS"" WHERE, GROUP, ORDER thats against a known table (by exact string) on the closest query to the cursor, allow auto completion that will show a list of fields for that current queries table
Describe the solution
Below are example of when using autocomplete would pick the table if its been written at that point
SELECT * FROM accounts WHERE {{AUTO COMPLETE}} << shows fields for accounts SELECT {{AUTO COMPLETE}} FROM accounts << shows fields for accounts SELECT * FROM (SELECT * FROM accounts WHERE {{AUTO COMPLETE}}) << shows fields for accounts SELECT * FROM (SELECT * FROM accounts) WHERE {{AUTO COMPLETE}} << doesnt show any fields as its a from a dynamic FROM
Have you considered contributing this feature yourself?
Is your feature request related to a problem?
When writing a ""
FIELDS
""WHERE
,GROUP
,ORDER
thats against a known table (by exact string) on the closest query to the cursor, allow auto completion that will show a list of fields for that current queries tableDescribe the solution
Below are example of when using autocomplete would pick the table if its been written at that point
SELECT * FROM accounts WHERE {{AUTO COMPLETE}}
<< shows fields foraccounts
SELECT {{AUTO COMPLETE}} FROM accounts
<< shows fields foraccounts
SELECT * FROM (SELECT * FROM accounts WHERE {{AUTO COMPLETE}})
<< shows fields foraccounts
SELECT * FROM (SELECT * FROM accounts) WHERE {{AUTO COMPLETE}}
<< doesnt show any fields as its a from a dynamicFROM
Have you considered contributing this feature yourself?
No response
Contact Details
[email protected]
Is there an existing issue for this?
Code of Conduct
The text was updated successfully, but these errors were encountered: