> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-3a82795f.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Run queries and create visualizations using the SQL Console.

# SQL Console

export const Image = ({img, alt, size}) => {
  return <Frame>
      <img src={img} alt={alt} />
    </Frame>;
};

SQL console is the fastest and easiest way to explore and query your databases in ClickHouse Cloud. You can use the SQL console to:

* Connect to your ClickHouse Cloud Services
* View, filter, and sort table data
* Execute queries and visualize result data in just a few clicks
* Share queries with team members and collaborate more effectively.

<h3 id="exploring-tables">
  Exploring tables
</h3>

<h3 id="viewing-table-list-and-schema-info">
  Viewing table list and schema info
</h3>

An overview of tables contained in your ClickHouse instance can be found in the left sidebar area. Use the database selector at the top of the left bar to view the tables in a specific database

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/table-list-and-schema.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=1a6dbb2438df7a1607b62560f0c1e475" size="md" alt="table list and schema" width="1415" height="863" data-path="images/cloud/sqlconsole/table-list-and-schema.png" />

Tables in the list can also be expanded to view columns and types

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/view-columns.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=999840fe9ae393288d941eb54293ce4b" size="md" alt="view columns" width="1415" height="863" data-path="images/cloud/sqlconsole/view-columns.png" />

<h3 id="exploring-table-data">
  Exploring table data
</h3>

Click on a table in the list to open it in a new tab. In the Table View, data can be easily viewed, selected, and copied. Note that structure and formatting are preserved when copy-pasting to spreadsheet applications such as Microsoft Excel and Google Sheets. You can flip between pages of table data (paginated in 30-row increments) using the navigation in the footer.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/abc.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=9a8173e6a1a635eed7005385bfe24705" size="md" alt="abc" width="1335" height="756" data-path="images/cloud/sqlconsole/abc.png" />

<h3 id="inspecting-cell-data">
  Inspecting cell data
</h3>

The Cell Inspector tool can be used to view large amounts of data contained within a single cell. To open it, right-click on a cell and select 'Inspect Cell'. The contents of the cell inspector can be copied by clicking the copy icon in the top right corner of the inspector contents.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/inspecting-cell-content.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=1884686771ea7530809fadece57b7fb1" size="md" alt="inspecting cell content" width="1415" height="863" data-path="images/cloud/sqlconsole/inspecting-cell-content.png" />

<h2 id="filtering-and-sorting-tables">
  Filtering and sorting tables
</h2>

<h3 id="sorting-a-table">
  Sorting a table
</h3>

To sort a table in the SQL console, open a table and select the 'Sort' button in the toolbar. This button will open a menu that will allow you to configure your sort. You can choose a column by which you want to sort and configure the ordering of the sort (ascending or descending). Select 'Apply' or press Enter to sort your table

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sort-descending-on-column.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=a4fe7c86be891513fcdccdc0d003be0a" size="md" alt="sort descending on a column" width="1415" height="863" data-path="images/cloud/sqlconsole/sort-descending-on-column.png" />

The SQL console also allows you to add multiple sorts to a table. Click the 'Sort' button again to add another sort.

<Note>
  Sorts are applied in the order that they appear in the sort pane (top to bottom). To remove a sort, simply click the 'x' button next to the sort.
</Note>

<h3 id="filtering-a-table">
  Filtering a table
</h3>

To filter a table in the SQL console, open a table and select the 'Filter' button. Just like sorting, this button will open a menu that will allow you to configure your filter. You can choose a column by which to filter and select the necessary criteria. The SQL console intelligently displays filter options that correspond to the type of data contained in the column.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/filter-on-radio-column-equal-gsm.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=b9d4fd0fefe7622f683769868fdc9e0b" size="md" alt="filter on the radio column equal to GSM" width="1415" height="863" data-path="images/cloud/sqlconsole/filter-on-radio-column-equal-gsm.png" />

When you're happy with your filter, you can select 'Apply' to filter your data. You can also add additional filters as shown below.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/add-more-filters.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=2390ad56b846c9b02cd6bb8e5b1f343a" size="md" alt="Add a filter on range greater than 2000" width="1326" height="756" data-path="images/cloud/sqlconsole/add-more-filters.png" />

Similar to the sort functionality, click the 'x' button next to a filter to remove it.

<h3 id="filtering-and-sorting-together">
  Filtering and sorting together
</h3>

The SQL console allows you to filter and sort a table at the same time. To do this, add all desired filters and sorts using the steps described above and click the 'Apply' button.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/filtering-and-sorting-together.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=1087ab64f156eb4ed520c4a9b34d1832" size="md" alt="Add a filter on range greater than 2000" width="1415" height="863" data-path="images/cloud/sqlconsole/filtering-and-sorting-together.png" />

<h3 id="creating-a-query-from-filters-and-sorts">
  Creating a query from filters and sorts
</h3>

The SQL console can convert your sorts and filters directly into queries with one click. Simply select the 'Create Query' button from the toolbar with the sort and filter parameters of your choosing. After clicking 'Create query', a new query tab will open pre-populated with the SQL command corresponding to the data contained in your table view.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/create-a-query-from-sorts-and-filters.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=32f1cf7b377433fff7ef040d08af9a72" size="md" alt="Create a query from sorts and filters" width="1415" height="863" data-path="images/cloud/sqlconsole/create-a-query-from-sorts-and-filters.png" />

<Note>
  Filters and sorts aren't mandatory when using the 'Create Query' feature.
</Note>

You can learn more about querying in the SQL console by reading the (link) query documentation.

<h2 id="creating-and-running-a-query">
  Creating and running a query
</h2>

<h3 id="creating-a-query">
  Creating a query
</h3>

There are two ways to create a new query in the SQL console.

* Click the '+' button in the tab bar
* Select the 'New Query' button from the left sidebar query list

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/creating-a-query.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=426c45ac1ea455f4b09d676719695341" size="md" alt="Creating a query" width="1415" height="863" data-path="images/cloud/sqlconsole/creating-a-query.png" />

<h3 id="running-a-query">
  Running a query
</h3>

To run a query, type your SQL command or commands into the SQL Editor and click the 'Run' button or use the shortcut `cmd / ctrl + enter`. To write and run multiple commands sequentially, make sure to add a semicolon after each command.

Query Execution Options
By default, clicking the run button will run all commands contained in the SQL Editor. The SQL console supports two other query execution options:

* Run selected commands
* Run command at the cursor

To run selected commands, highlight the desired command or sequence of commands and click the 'Run' button (or use the `cmd / ctrl + enter` shortcut). You can also select 'Run selected' from the SQL Editor context menu (opened by right-clicking anywhere within the editor) when a selection is present.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/run-selected-query.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=8d75b0db3d46cd4b5dde85e7f3a6ad0a" size="md" alt="run selected query" width="1415" height="863" data-path="images/cloud/sqlconsole/run-selected-query.png" />

Running the command at the current cursor position can be achieved in two ways:

* Select 'At Cursor' from the extended run options menu (or use the corresponding `cmd / ctrl + shift + enter` keyboard shortcut

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/run-at-cursor-2.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=b96e398cef22a8820c15454cd68e9ab0" size="md" alt="run at cursor" width="1415" height="863" data-path="images/cloud/sqlconsole/run-at-cursor-2.png" />

* Selecting 'Run at cursor' from the SQL Editor context menu

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/run-at-cursor.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=00ee0eabbf794a779ece377386d72e0b" size="md" alt="run at cursor" width="1415" height="863" data-path="images/cloud/sqlconsole/run-at-cursor.png" />

<Note>
  The command present at the cursor position will flash yellow on execution.
</Note>

<h3 id="canceling-a-query">
  Canceling a query
</h3>

While a query is running, the 'Run' button in the Query Editor toolbar will be replaced with a 'Cancel' button. Simply click this button or press `Esc` to cancel the query. Note: Any results that have already been returned will persist after cancellation.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/cancel-a-query.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=38ae352b9170e0bd2159a0f358c419a4" size="md" alt="Cancel a query" width="1415" height="863" data-path="images/cloud/sqlconsole/cancel-a-query.png" />

<h3 id="saving-a-query">
  Saving a query
</h3>

Saving queries allows you to easily find them later and share them with your teammates. The SQL console also allows you to organize your queries into folders.

To save a query, simply click the "Save" button immediately next to the "Run" button in the toolbar. Input the desired name and click "Save Query".

<Note>
  Using the shortcut `cmd / ctrl` + s will also save any work in the current query tab.
</Note>

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-save-query.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=e1f36ff66a4fb155cfbfeae22203b6cc" size="md" alt="Save query" width="704" height="266" data-path="images/cloud/sqlconsole/sql-console-save-query.png" />

Alternatively, you can simultaneously name and save a query by clicking on "Untitled Query" in the toolbar, adjusting the name, and hitting Enter:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-rename.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=92443802667e4487a2bd12d76924404b" size="md" alt="Rename query" width="1911" height="899" data-path="images/cloud/sqlconsole/sql-console-rename.png" />

<h3 id="query-sharing">
  Query sharing
</h3>

The SQL console allows you to easily share queries with your team members. The SQL console supports four levels of access that can be adjusted both globally and on a per-user basis:

* Owner (can adjust sharing options)
* Write access
* Read-only access
* No access

After saving a query, click the "Share" button in the toolbar. A modal with sharing options will appear:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-share.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=88610714db4e65bb5aa9bd2be2c1f219" size="md" alt="Share query" width="686" height="260" data-path="images/cloud/sqlconsole/sql-console-share.png" />

To adjust query access for all organization members with access to the service, simply adjust the access level selector in the top line:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-edit-access.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=70ee7202327a19d7465b1ee0a4be4716" size="md" alt="Edit access" width="682" height="254" data-path="images/cloud/sqlconsole/sql-console-edit-access.png" />

After applying the above, the query can now be viewed (and executed) by all team members with access to the SQL console for the service.

To adjust query access for specific members, select the desired team member from the "Add a team member" selector:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-add-team.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=5f7cf7572d757c8fe42b1a150df94583" size="md" alt="Add team member" width="697" height="432" data-path="images/cloud/sqlconsole/sql-console-add-team.png" />

After selecting a team member, a new line item should appear with an access level selector:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-edit-member.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=cb3b2afbae32a9d1ef728428988e4a11" size="md" alt="Edit team member access" width="686" height="374" data-path="images/cloud/sqlconsole/sql-console-edit-member.png" />

<h3 id="accessing-shared-queries">
  Accessing shared queries
</h3>

If a query has been shared with you, it will be displayed in the "Queries" tab of the SQL console left sidebar:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/sql-console-access-queries.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=141a8942a0ceeccaf8a1992194eda96d" size="md" alt="Access queries" width="687" height="482" data-path="images/cloud/sqlconsole/sql-console-access-queries.png" />

<h3 id="linking-to-a-query-permalinks">
  Linking to a query (permalinks)
</h3>

Saved queries are also permalinked, meaning that you can send and receive links to shared queries and open them directly.

Values for any parameters that may exist in a query are automatically added to the saved query URL as query parameters. For example, if a query contains `{start_date: Date}` and `{end_date: Date}` parameters, the permalink can look like: `https://console.clickhouse.cloud/services/:serviceId/console/query/:queryId?param_start_date=2015-01-01&param_end_date=2016-01-01`.

<h2 id="advanced-querying-features">
  Advanced querying features
</h2>

<h3 id="searching-query-results">
  Searching query results
</h3>

After a query is executed, you can quickly search through the returned result set using the search input in the result pane. This feature assists in previewing the results of an additional `WHERE` clause or simply checking to ensure that specific data is included in the result set. After inputting a value into the search input, the result pane will update and return records containing an entry that matches the inputted value. In this example, we'll look for all instances of `breakfast` in the `hackernews` table for comments that contain `ClickHouse` (case-insensitive):

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/search-hn.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=9232053f64cd468cc63670c64e0d6d71" size="md" alt="Search Hacker News Data" width="1415" height="863" data-path="images/cloud/sqlconsole/search-hn.png" />

Note: Any field matching the inputted value will be returned. For example, the third record in the above screenshot doesn't match 'breakfast' in the `by` field, but the `text` field does:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/match-in-body.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=63390428930ccf376935a67a0e9c3e18" size="md" alt="Match in body" width="1415" height="863" data-path="images/cloud/sqlconsole/match-in-body.png" />

<h3 id="adjusting-pagination-settings">
  Adjusting pagination settings
</h3>

By default, the query result pane will display every result record on a single page. For larger result sets, it may be preferable to paginate results for easier viewing. This can be accomplished using the pagination selector in the bottom right corner of the result pane:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/pagination.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=003b8bbdb2a91111c7a954c06bcbcf07" size="md" alt="Pagination options" width="1415" height="863" data-path="images/cloud/sqlconsole/pagination.png" />

Selecting a page size will immediately apply pagination to the result set and navigation options will appear in the middle of the result pane footer

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/pagination-nav.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=b9021ebf88e405ccd01426b944992636" size="md" alt="Pagination navigation" width="1415" height="863" data-path="images/cloud/sqlconsole/pagination-nav.png" />

<h3 id="exporting-query-result-data">
  Exporting query result data
</h3>

Query result sets can be easily exported to CSV format directly from the SQL console. To do so, open the `•••` menu on the right side of the result pane toolbar and select 'Download as CSV'.

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/download-as-csv.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=de037fc0f982a5ae48380a75ba8ecdee" size="md" alt="Download as CSV" width="1415" height="863" data-path="images/cloud/sqlconsole/download-as-csv.png" />

<h2 id="visualizing-query-data">
  Visualizing query data
</h2>

Some data can be more easily interpreted in chart form. You can quickly create visualizations from query result data directly from the SQL console in just a few clicks. As an example, we'll use a query that calculates weekly statistics for NYC taxi trips:

```sql theme={null}
SELECT
   toStartOfWeek(pickup_datetime) AS week,
   sum(total_amount) AS fare_total,
   sum(trip_distance) AS distance_total,
   count(*) AS trip_total
FROM
   nyc_taxi
GROUP BY
   1
ORDER BY
   1 ASC
```

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/tabular-query-results.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=069cbc936739cc27e17ff305682f9913" size="md" alt="Tabular query results" width="1415" height="863" data-path="images/cloud/sqlconsole/tabular-query-results.png" />

Without visualization, these results are difficult to interpret. Let's turn them into a chart.

<h3 id="creating-charts">
  Creating charts
</h3>

To begin building your visualization, select the 'Chart' option from the query result pane toolbar. A chart configuration pane will appear:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/switch-from-query-to-chart.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=a6dfcdf47b59638b91b22196bbb2ae31" size="md" alt="Switch from query to chart" width="1415" height="863" data-path="images/cloud/sqlconsole/switch-from-query-to-chart.png" />

We'll start by creating a simple bar chart tracking `trip_total` by `week`. To accomplish this, we'll drag the `week` field to the x-axis and the `trip_total` field to the y-axis:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/trip-total-by-week.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=98f86b05b9e6bc478972f84d8b5f4af6" size="md" alt="Trip total by week" width="1415" height="863" data-path="images/cloud/sqlconsole/trip-total-by-week.png" />

Most chart types support multiple fields on numeric axes. To demonstrate, we'll drag the fare\_total field onto the y-axis:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/bar-chart.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=2b9ff92054d86e039df67b8951b47c32" size="md" alt="Bar chart" width="1415" height="863" data-path="images/cloud/sqlconsole/bar-chart.png" />

<h3 id="customizing-charts">
  Customizing charts
</h3>

The SQL console supports ten chart types that can be selected from the chart type selector in the chart configuration pane. For example, we can easily change the previous chart type from Bar to an Area:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/change-from-bar-to-area.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=81cf20631f78149bf0145ad5de4ba19b" size="md" alt="Change from Bar chart to Area" width="1415" height="863" data-path="images/cloud/sqlconsole/change-from-bar-to-area.png" />

Chart titles match the name of the query supplying the data. Updating the name of the query will cause the Chart title to update as well:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/update-query-name.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=61b4bb994a72efa36d63e36deb3bd9ee" size="md" alt="Update query name" width="1415" height="863" data-path="images/cloud/sqlconsole/update-query-name.png" />

A number of more advanced chart characteristics can also be adjusted in the 'Advanced' section of the chart configuration pane. To begin, we'll adjust the following settings:

* Subtitle
* Axis titles
* Label orientation for the x-axis

Our chart will be updated accordingly:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/rQmlP_BCPODXhaTK/images/cloud/sqlconsole/update-subtitle-etc.png?fit=max&auto=format&n=rQmlP_BCPODXhaTK&q=85&s=fe4e0435da46a553bd127389cc41055e" size="md" alt="Update subtitle etc." width="1415" height="863" data-path="images/cloud/sqlconsole/update-subtitle-etc.png" />

In some scenarios, it may be necessary to adjust the axis scales for each field independently. This can be done in the 'Advanced' section of the chart configuration pane by specifying min and max values for an axis range. As an example, the above chart looks good, but to demonstrate the correlation between our `trip_total` and `fare_total` fields, the axis ranges need some adjustment:

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-3a82795f/yXUOAqRZmw7p7kWc/images/cloud/sqlconsole/adjust-axis-scale.png?fit=max&auto=format&n=yXUOAqRZmw7p7kWc&q=85&s=af3343a9bd00ec50b7f7e5d87373753c" size="md" alt="Adjust axis scale" width="1415" height="863" data-path="images/cloud/sqlconsole/adjust-axis-scale.png" />
