textql icon indicating copy to clipboard operation
textql copied to clipboard

Execute SQL against structured text like CSV or TSV

Results 39 textql issues
Sort by recently updated
recently updated
newest added

Hello there! I was working on a query and using textql (by the way, great job, thanks for this!) and noticed funny thing. Usually the command I am using looks...

Hi all, I got this error "/usr/bin/textql: Argument list too long" when executing many SQL statement(s) (more than 100K) to run on the data. Have the limit length of sql...

Thanks and congrats for this cool and useful project! Are you considering migrating to [dep](https://github.com/golang/dep)? From the glide README.md: > The Go community now has the dep project to manage...

Not a huge problem, but I had to spend a little more effort than ideal figuring out to run an update statement against the `stdin` table for a piped CSV....

input.csv: ``` Column 1,Column 2 A,B C,D ``` Query: ``` textql -header -sql 'select [Column 1]' input.csv ``` Expected result: ``` A C ``` Actual result: ``` 2017/05/23 15:21:00 no...

Any chance you could actualy release it as a binary on github ? Releasing a binary, just makes your tool available for someone who just wants to check it out...

https://saveenr.gitbooks.io/usql-tutorial/content/set-operations/outer-union.html

Hi, first of all thank you for this tools. In sqlite, via .load, it's possible to load extensions https://www.sqlite.org/loadext.html Is it possible to do it via textql? Thank you

Is it possible to get the instructions in text form instead of a video? 1. Videos aren't usable by screen readers and not good for disabled users 2. This video...

Is there a way to import multiple files in to the same table? My data is split in to multiple files due to its size. Running a command like this...