Skip to content
New issue

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

Compatibility with SQL Server #469

Open
uriahf opened this issue Jan 12, 2023 · 0 comments
Open

Compatibility with SQL Server #469

uriahf opened this issue Jan 12, 2023 · 0 comments

Comments

@uriahf
Copy link

uriahf commented Jan 12, 2023

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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant