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
for instance
%%sql --hook tables MSS = USE {0}; SELECT * FROM sys.Tables; columns_mss MSS = EXEC sp_columns {0}; columns_db1 DB1 = EXEC sp_columns {0}; views mssql+pymssql://username:password@hostname/DB = USE {0}; SELECT * FROM sys.Views; tables_db1 DB1 = USE {0}; SELECT * FROM sys.Tables; views_l mssql+pymssql://:@localhost/DB = USE {0}; SELECT * FROM sys.Views; databases LC = SELECT name FROM master.sys.databases;
add server alias as argument so the same shortcut can be used across any server (assuming same sql dialect).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
for instance
add server alias as argument so the same shortcut can be used across any server (assuming same sql dialect).
The text was updated successfully, but these errors were encountered: