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
Hi, thank you for this amazing work!
Does Siuba work with SQL Server?
Should be something like this:
import siuba from siuba import _, sql from siuba.sql import select, group_by from siuba.dply.connections import connect # Connect to SQL Server conn = connect( host="hostname", port=1433, user="username", password="password", database="database_name", driver="ODBC Driver 17 for SQL Server" ) # Create a query using the siuba package query = ( select(_.column1, _.column2) .from_("table_name") .where(_.column1 > 5) .group_by(_.column1) ) # Execute the query result = conn.query(query) print(result)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thank you for this amazing work!
Does Siuba work with SQL Server?
Should be something like this:
The text was updated successfully, but these errors were encountered: