It is directly connected to your data and let you preview, query, auto-complete your SQL.
Browse your database
You can browse your available data from nao left panel in “Warehouse” tab.From the data tree you can:
- View all tables available
- Search for a table
- Preview a table and see its list of columns
- Start a query on a table by clicking on
<…>icon

Write SQL queries
Data warehouse console features
nao provides same features as any data warehouse console:- Auto-complete of tables and column names: every time you type “space”, a dropdown with available tables/columns will appear.
- BigQuery dry run: for BigQuery connections, nao will show dry run results, with errors and cost of query in GB.
AI auto-complete
On top of regular auto-complete, nao AI tab provides AI suggestion to complete your SQL code. These suggestions are based on the context of your data/columns metadata so as to suggest code that actually matches your data schema.
Fix SQL in chat
When you SQL has an error, just hit the “Fix in chat” button to send query error to the agent and have it fix it.
Run SQL queries
In nao, you can run any SQL query by pressing ⌘ + ⏎ (cmd + enter).You can also execute queries with dbt syntax (if configured). See the dbt setup guide for details.
Create SQL worksheets
You can create SQL worksheets within nao, for adhoc query writing.These worksheets will be saved within nao, in the “SQL worksheets” tab.

Data preview

- Sorting: Click column headers to sort data ascending or descending
- Pagination: Navigate through large result sets with pagination controls
- Cell Selection: Click to select individual cells
- Row Selection: Select entire rows for analysis
- Column Selection: Select entire columns
- Zoom in Cell: Double click on a cell to see the full value when it’s truncated
- Sum/Count Display: See the sum and count of selected cells/rows in the preview
- Export to csv: Export query results to a csv file
Keyboard Shortcut
Open or close the data preview panel with ⌘ + ⇧ + J.
Open or close the data preview panel with ⌘ + ⇧ + J.
Data diff
When you change SQL code, nao allows you to preview directly corresponding changes in the data. Click on “table diff” in the preview section to see a highlighted version of additions / deletions in your data.What is comparison point for the diff?
This table diff is based on the last commit of your branch.
It will show you data differences between running code in the last commit and current code of the file.
It will show you data differences between running code in the last commit and current code of the file.