Esc

Your first query

Connect to a database and run your first SQL query.

Create an empty project

On the Welcome screen, click Empty project under New project. Arris scaffolds a fresh workspace and drops a sample.duckdb database with sample data inside, so you can start querying right away without configuring a connection.

The Arris Welcome screen with Empty project, dbt, and SQLMesh options under New project
Click Empty project to scaffold a workspace preloaded with a sample DuckDB database.

Write a query

The empty project opens with a Sample query tab already wired to the bundled Sample data DuckDB connection. Expand it in the right sidebar to browse the sample orders table and its columns (id, product, amount, order_date).

The Arris SQL editor with the Sample data DuckDB connection expanded, showing the orders table columns id, product, amount, and order_date
The empty project ships with a Sample data DuckDB connection and an orders table to query.

Run it

Click the Run button (the icon in the top-left of the editor) or press ⌘↩ to execute the query. To run only part of the script, select the lines you want first. Results appear in the panel below, with each column's name and type in the header.

The Arris SQL editor running a query against the sample orders table, with the Run button highlighted and results shown in a grid below
Hit Run or press Cmd+Enter. Results land in the grid below with typed column headers.

Browse results

Query results appear in a grid below the editor. The grid supports:

The Arris results grid with a row selected and the Row detail panel showing that row as formatted JSON
Select a row and open the Row detail panel to inspect it as formatted JSON.

Prefer a visual? Switch the results panel from Table to Chart to plot the same query output without leaving the editor. Pick a chart type (bar, line, area, pie, scatter, and more), map the X and Y axes, and Arris renders it live.

The Arris results panel in Chart mode rendering a bar chart of amount by product, with chart type and axis controls in the right sidebar
Flip to Chart mode to visualize results as a bar, line, pie, and more, configured from the side panel.

Next steps

You have connected to a database and run your first query. Here are some things to try next: