-
Notifications
You must be signed in to change notification settings - Fork 243
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
Reconstruct statement #136
Comments
Hi Stefano, glad that the library is of use to you. Just to clarify: Is your expected output another SQL statement? If yes, that is not something that we support at the moment. It should not be too complex to add |
Hi, Are those things available already (I know I can get the table from one issue I found on repo) |
Could you give me a link? Maybe that will help me understand better what you are looking for. |
OK I will put exhaustive explanation when at home! |
Hi,
thank you for this wonderful library. I just started today an am already enjoying using it.
I have a use case where I have statement like
SELECT a,b,c FROM users WHERE a > 1
Now suppose I want to reconstruct the SQL query string removing WHERE and replacing Select columns with let say * so that the statement becomes:
SELECT * FROM users
I know the library provides a list of statements (where I can choose which one I don't want to have them but then how do I glue the wanted pieces into a complete statement?
TIA,
Stefano
The text was updated successfully, but these errors were encountered: