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

# Navigating the MindsDB GUI

MindsDB offers a user-friendly graphical interface that allows users to execute SQL commands, view their outputs, and easily navigate connected data sources, projects, and their contents.

Let's explore the features and usage of the MindsDB editor.

## Accessing the MindsDB GUI Editor

Install MindsDB locally via [Docker](/setup/self-hosted/docker) or [Docker Desktop](/setup/self-hosted/docker-desktop).

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/mindsdb_editor.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=60775ba49740a3aabf9dcf6e1051da4c" width="1905" height="963" data-path="assets/mindsdb_gui_editor/mindsdb_editor.png" />
</p>

## Exploring the MindsDB GUI Editor

### Query Editor

This is the primary component where users can input SQL commands and queries. It provides a code editor environment where users can write, edit, and execute SQL statements.

It is located in the top center of the MindsDB GUI.

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/query_editor.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=840af33e5297a180d10deeb515a1504b" width="1905" height="963" data-path="assets/mindsdb_gui_editor/query_editor.png" />
</p>

You can open multiple query editor tabs by clicking the plus button next to the current tab, like this:

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/multiple_query_editor.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=f30069e6dbf98f3a09e13b9c3522645d" width="613" height="93" data-path="assets/mindsdb_gui_editor/multiple_query_editor.png" />
</p>

### Results Viewer

Once a query is executed, the results viewer displays the output of the query. It presents the results in a tabular format, showing rows and columns of data.

It is located in the bottom center of the MindsDB GUI.

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/results_viewer.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=1a22ef1f3441dc1157c78506c5699ca6" width="1903" height="961" data-path="assets/mindsdb_gui_editor/results_viewer.png" />
</p>

MindsDB supports additional features such as the following:

1. The [Data Insights](/sql/data-insights) feature provides useful data visualization charts.
2. The Export feature lets you export the query output as a CSV or Markdown file.

### Object Explorer

The object explorer provides an overview of the projects, models, views, connected data sources, and tables.

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/object_explorer.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=bc6d9279ce799e484b4cd9763f84cb47" width="302" height="289" data-path="assets/mindsdb_gui_editor/object_explorer.png" />
</p>

Users can navigate through the available objects by expanding the tree structure items. Upon hovering over the tables, you can query their content using the provided `SELECT` statement, as below.

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/object_explorer_query.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=f16513e8086fedd269d54359950e639b" width="622" height="297" data-path="assets/mindsdb_gui_editor/object_explorer_query.png" />
</p>

### Model Progress Bar

MindsDB provides a custom SQL statement to create and deploy models as virtual tables. Upon executing the [`CREATE MODEL`](/sql/create/model) statement, you can monitor the training progress at the bottom-left corner below the object explorer.

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/create_model_1.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=89e36cba6180c93a05b1e3ed2a5a12ff" width="1069" height="961" data-path="assets/mindsdb_gui_editor/create_model_1.png" />
</p>

Once the model is ready, its status updates to complete.

<p align="center">
  <img src="https://mintcdn.com/mindsdb/iK5MN5UH2_93kMSg/assets/mindsdb_gui_editor/create_model_2.png?fit=max&auto=format&n=iK5MN5UH2_93kMSg&q=85&s=3a3fe280601285a2c5ff38289851871e" width="297" height="118" data-path="assets/mindsdb_gui_editor/create_model_2.png" />
</p>

### Add New Data Sources

You can connect a data source to MindsDB by clicking the `Add` button and choosing `New Datasource`. It takes you to a page that lists all available data sources, including, databases, data warehouses, applications, and more. Here, you can search for a data source you want to connect to and follow the instructions.

For more information, visit the **Data Sources** section of the docs.

### Upload Files

You can upload a file to MindsDB by clicking the `Add` button and choosing `Upload File`. It takes you to a form where you can upload a file and give it a name.

For more information, visit [our docs here](/sql/create/file).

### Upload Custom Models

MindsDB offers a way to upload your custom model in the form of Python code and incorporate it into the MindsDB ecosystem. You can do that by clicking the `Add` button and choosing `Upload custom model`.

For more information, visit [our docs here](/custom-model/byom).
