You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can use Google Query Language to query the content of Google Sheets. It's a subset of SQL and I think it's much more flexible than the current _finder method. All we need to do is just sending a GET request to https://docs.google.com/spreadsheets/d/[id]/gviz/tq/tq=[query].
Here's a simple example where we query all the records in this test spreadsheet with age larger than 50:
The only drawback that I can think of is that we can only get the table content, but not the row/column indices, but I think it's good to have this option there for users need it.
@burnash If you think it's a good idea, I would be happy to submit a PR.
The text was updated successfully, but these errors were encountered:
We can use Google Query Language to query the content of Google Sheets. It's a subset of SQL and I think it's much more flexible than the current
_finder
method. All we need to do is just sending a GET request tohttps://docs.google.com/spreadsheets/d/[id]/gviz/tq/tq=[query]
.Here's a simple example where we query all the records in this test spreadsheet with age larger than 50:
The only drawback that I can think of is that we can only get the table content, but not the row/column indices, but I think it's good to have this option there for users need it.
@burnash If you think it's a good idea, I would be happy to submit a PR.
The text was updated successfully, but these errors were encountered: