Execute SQL queries directly on CSV, JSON, YAML, and other data formats
CLI tool that can execute SQL queries on CSV, LTSV, JSON, YAML and TBLN
trdsql$ trdsql -csv 'SELECT * FROM data.csv WHERE age > 30'$ trdsql -ijson -ocsv 'SELECT name, email FROM input.json' > output.csv$ trdsql -csv 'SELECT a.id, a.name, b.score FROM a.csv a JOIN b.csv b ON a.id = b.id WHERE b.score > 80'