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
SELECT*FROMdb1.tb1 tb1_alias
JOINdb2.tb2 tb2_alias ON tb1_alias.<cursor_1>= tb2_alias.<cursor_2>
<cursor_1> will autocomplete, but cursor_2 not.
db1 and db2 in a same mysql server instance.
config:
# Set to true to use lowercase keywords instead of uppercase.lowercaseKeywords: falseconnections:
- alias: mysql1driver: mysqldataSourceName: myuser:mypwd@tcp(127.0.0.1:3306)/db1
If I add db2 in the yml file, still not work:
# Set to true to use lowercase keywords instead of uppercase.lowercaseKeywords: falseconnections:
- alias: mysql1driver: mysqldataSourceName: myuser:mypwd@tcp(127.0.0.1:3306)/db1
- alias: mysql2driver: mysqldataSourceName: myuser:mypwd@tcp(127.0.0.1:3306)/db2
How can auto-complete all databases and tables in one sql file?
The text was updated successfully, but these errors were encountered:
I have the a mysql like this:
<cursor_1> will autocomplete, but cursor_2 not.
db1 and db2 in a same mysql server instance.
config:
If I add db2 in the yml file, still not work:
How can auto-complete all databases and tables in one sql file?
The text was updated successfully, but these errors were encountered: