textql
Verified for current stable LTS
Textql Commands
Textql command syntax with verified terminal examples.
Commands
6 commands for Textql
textql Operations
Textql Command: Execute Sql Query Csv
textql -sql "<SELECT * FROM filename>" <path/to/filename.csv> textql HTTP
Textql Command: Format Output With Delimiter And Header
textql -output-dlm=<delimiter> -output-header -sql "SELECT <column> AS <alias> FROM <filename>" <path/to/filename.csv> textql HTTP
Textql Command: Join Two Files On Common Column
textql -header -sql "SELECT * FROM <path/to/file1> JOIN <file2> ON <path/to/file1>.<c1> = <file2>.<c1> LIMIT <10>" -output-header <path/to/file1.csv> <path/to/file2.csv> textql HTTP
Textql Command: Query File With Header Row
textql -dlm=<delimiter> -header -sql "<SELECT * FROM filename>" <path/to/filename.csv> textql Operations
Textql Command: Query Tsv File
textql -dlm=tab -sql "<SELECT * FROM filename>" <path/to/filename.tsv> textql Operations
Textql Command: Read Data From Stdin
cat <path/to/file> | textql -sql "<SELECT * FROM stdin>" Suggest a Textql Command
Submit missing workflows, corrections, or verified alternatives for this tool.
FAQ
Coverage: Focused examples for common Textql workflows.
Verified version: current stable LTS.
Verification: Test commands in a disposable workspace and submit notes for edge cases.