mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
4.2 KiB
4.2 KiB
| layout | hero | |||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| home |
|
🔍 SQL Powered
Query your notes and data using familiar SQL syntax. Perfect for both SQL experts and beginners.
📊 CSV and JSON Integration
Seamlessly work with CSV and JSON files in your vault. Preview, query, and even edit them directly in Obsidian.
📱 Cross-Platform
Works on both desktop and mobile devices. Your data insights everywhere you go.
Query any data
You can query any CSV and JSON data stored in your vault. SQLSeal can help you analyse your finances, workouts, goals and whatever you imagine!
TABLE commute = file(transport.csv)
SELECT
Date,
transport_type,
SUM(distance_km) AS total_distance,
group_concat(purpose) as purposes
FROM commute
WHERE date = @date
GROUP BY Date, Transport_Type
| date | transport_type | total_distance | purposes |
|---|---|---|---|
| 2024-01-02 | bike | 8.4 | commute |
| 2024-01-02 | walk | 6.2 | lunch,leisure |
Learn more
This introduction video should help you get started with basics of SQLSeal

