-
Notifications
You must be signed in to change notification settings - Fork 304
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 for VALUES List #569
Comments
Here is my workaround.
|
See also:
|
This would be great PR to add! Are we waiting for the library owner to respond? |
Commenting to know more about the latest status of this ticket and the linked PR. Thanks! |
I am one of the maintainers of the repo now but I need to familiarize with the code myself a bit to provide a better insight. Apart from that, feel free to create such a pull request. Does this pull request #517 cover the requested functionality in this issue? If not, it would be great to have 1 pull request that covers a most of the popular databases |
Does pypika support for VALUES List like below?
If not, it would be great to add a class for it.
https://www.postgresql.org/docs/9.5/queries-values.html
SELECT * FROM (VALUES (1, 'one'), (2, 'two'), (3, 'three')) AS t (num,letter);
The text was updated successfully, but these errors were encountered: