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
It would be nice to support CTE serializer, for example
class Contact: first_name: str last_name: str age: int
will produce something like
select "John" as first_name, "Doe" as last_name, 23 as age union all select "Steve" as first_name, "Jobs" as last_name, 56 as age
The text was updated successfully, but these errors were encountered:
feat: WIP #1
7a95fbe
feat: WIP building working prototype (#2)
d934b14
* feat: initial commit with fields and some basic functionality * feat: WIP #1
feat: v0.1 with basic implementation for Str and Int fields. (#5)
f787eae
* feat: initial commit with fields and some basic functionality * feat: WIP #1 * feat: add sqlalchemy dependency * feat: SqlCte serializer * Updated Jupyter notebook * Readme name warning * Readme name warning * Readme name warning * Readme name warning * Readme name warning
No branches or pull requests
It would be nice to support CTE serializer, for example
will produce something like
The text was updated successfully, but these errors were encountered: