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
At the moment pydbtools has a create_temp_table method. It would be useful to allow users to do this via an SQL file.
create_temp_table
CREATE TEMPORARY TABLE <table name> AS ( <normal SQL query> )
Would then trigger:
pydb.create_temp_table(sql="<normal SQL query>", table_name = "<table name>")
The text was updated successfully, but these errors were encountered:
#60
Sorry, something went wrong.
mratford
No branches or pull requests
At the moment pydbtools has a
create_temp_table
method. It would be useful to allow users to do this via an SQL file.Would then trigger:
The text was updated successfully, but these errors were encountered: