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

Support SQL CTE serializer #1

Open
prudnikov opened this issue Oct 15, 2024 · 0 comments
Open

Support SQL CTE serializer #1

prudnikov opened this issue Oct 15, 2024 · 0 comments

Comments

@prudnikov
Copy link
Owner

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
prudnikov added a commit that referenced this issue Nov 4, 2024
prudnikov added a commit that referenced this issue Nov 5, 2024
* feat: initial commit with fields and some basic functionality

* feat: WIP #1
prudnikov added a commit that referenced this issue Nov 12, 2024
* 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant