Currently supports uploading and analyzing CSV files.
The first row must contain field names (column names), and each subsequent row represents a data record.
,order.csv-- Query all data
SELECT * FROM order.csv
-- Filter conditions
SELECT * FROM 'order.csv' WHERE price > 30
-- Aggregation
SELECT department, COUNT(*) FROM 'order.csv' GROUP BY departmentAfter uploading multiple CSV files, each file is registered as an independent table. You can perform JOIN operations for cross-file analysis:
-- Example: file1.csv and file2.csv
SELECT a.id, a.name, b.score
FROM file1.csv a
JOIN file2.csv b
ON a.id = b.id;All data processing is performed locally in your browser. Files are never uploaded to any server or stored anywhere, ensuring complete data privacy and security.