CSV Query Tool
Query CSV data with SQL-like syntax
Query Syntax
SELECT *- All columnsSELECT name, age- Specific columnsWHERE age > 25- Filter (supports: =, !=, >, <, >=, <=, LIKE)ORDER BY name ASC/DESC- Sort resultsLIMIT 10- Limit rows
Query CSV data with SQL-like syntax
SELECT * - All columnsSELECT name, age - Specific columnsWHERE age > 25 - Filter (supports: =, !=, >, <, >=, <=, LIKE)ORDER BY name ASC/DESC - Sort resultsLIMIT 10 - Limit rows