--- # https://vitepress.dev/reference/default-theme-home-page layout: home hero: name: "Obsidian SQLSeal" # text: "Plugin enabling full SQL capabilities in Obsidian" tagline: "Query your vault using SQL" image: src: /logo.svg alt: SQLSeal actions: - theme: brand text: Get Started link: /quick-start # features: # - title: Query data in your vault # details: Use full power of SQL to select, join, filter data for your liking # - title: Fully featured SQL Engine # details: With SQLite under the hood, you can use all functionality of the database # - title: Query your files and tags # details: Use SQL to filter files in your vault # - title: Add your own data # details: Operate on your CSV files using SQL to process them on the go ---
Turn your Obsidian vault into a powerful, queryable database using SQL. SQLSeal seamlessly integrates with your notes and CSV and JSON files, enabling you to extract insights and patterns from your personal knowledge base. ```sqlseal SELECT * FROM files ORDER BY modified_at DESC LIMIT 10 ```
![Example](./langing-page/example.png)

🔍 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! ```sqlseal 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 |
## Visualise Take your analysis to the next level with SQLSeal Charts that expands the plugin with full visualisation tool. ::: tip Coming Soon SQLSeal Charts is currently being reviewed by Obsidian. As soon as it gets approved, full documentation will be released. :::
![Chart](./langing-page/charts.png)
## Learn more

This introduction video should help you get started with basics of SQLSeal