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
Some simple sql queries have better optimization than LINO'pull algorithm (such as DISTINCT).
This is a proposal to add a new sql action. SQL query is read from standard input and result is dump as jsonline in standard output.
sql
$ echo "select * from public.customer" | lino sql source {"id" : 1, "name": "Robert"} {"id" : 2, "name": "Nick"} ...
The text was updated successfully, but these errors were encountered:
How would insert or update statement work ?
insert
update
$ echo "insert into public.customer(...) values (...) returning id" | lino sql source {"id" : 15}
Sorry, something went wrong.
No branches or pull requests
Motivation
Some simple sql queries have better optimization than LINO'pull algorithm (such as DISTINCT).
Proposal
This is a proposal to add a new
sql
action. SQL query is read from standard input and result is dump as jsonline in standard output.Example
The text was updated successfully, but these errors were encountered: