> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Query Editor Overview

> Navigate and use the Dune Query Editor to write, run, and manage SQL queries against blockchain data.

The Query Editor is where you spend most of your time on Dune. It consists of three main areas:

## Left Sidebar

The left sidebar gives you quick access to data discovery and query management tools. The most important panel here is the **[Data Explorer](/web-app/query-editor/data-explorer)**, which connects you directly to Dune's full [Data Catalog](/data-catalog/overview) — letting you search for tables, inspect schemas, and insert columns into your query without leaving the editor.

* **Data Explorer** — Browse and search across curated datasets, decoded contracts, raw blockchain tables, partner data, and your own uploaded data. You can search by table name, contract address, or keyword. See [Find Data Tables](/web-app/query-editor/data-explorer) for a full guide.
* **Query Explorer** — Search for and locate existing queries relevant to your analysis.
* **[Version History](/web-app/query-editor/version-history)** — Review past edits to your query and revert to any previous version.
* **Settings** — Configure query-level settings such as ownership and privacy.

<Tip>
  Double-click any sidebar icon to collapse or expand it.
</Tip>

## Central Editor

The central editor is your main workspace for writing and running SQL. It includes a full-featured code editor with autocomplete, syntax highlighting, and inline error messages, along with a results panel where you can view output, sort columns, and build visualizations.

See [Writing Queries](/web-app/query-editor/query-window) for a detailed guide on editor features, autocomplete, keyboard shortcuts, and running queries.

## Right Sidebar

The right sidebar contains tools for automating and exporting your work once a query is ready:

* **[Query Scheduler](/web-app/query-editor/query-scheduler)** — Set queries to run automatically on a recurring schedule so your dashboards and data stay up to date.
* **[Materialized Views](/query-engine/materialized-views)** — Save query results as reusable tables that other queries can reference directly.
* **Export as CSV** — Download your query results for use in external tools or reports.
* **[Alerts](/web-app/alerts)** — Configure notifications that trigger when your query results meet specific conditions.

## Features at a Glance

<CardGroup cols={2}>
  <Card title="Writing Queries" icon="pen" iconType="duotone" href="/web-app/query-editor/query-window">
    Write and execute SQL using autocomplete, run selection, and keyboard shortcuts.
  </Card>

  <Card title="Finding Tables" icon="table" iconType="duotone" href="/web-app/query-editor/data-explorer">
    Browse and search Dune's data catalog directly from the query editor sidebar.
  </Card>

  <Card title="Parameters" icon="sliders" iconType="duotone" href="/web-app/query-editor/parameters">
    Add variables to your queries for dynamic, reusable analysis.
  </Card>

  <Card title="Query Lineage" icon="sitemap" iconType="duotone" href="/web-app/query-editor/query-lineage">
    Visualize all tables, views, and nested query dependencies.
  </Card>
</CardGroup>
