Working with the query editor
The query editor opens in the data panel when you select a database, a table, or a view in the
Running a query
To run a query to a database, establish or activate a connection with the database.
To build a query:
-
Under Connections
, select a database, table, or image. -
In the data panel, you will see a form with the default query:
SELECT * FROM <table_name> LIMIT 10; -
Use this query or edit it. The interface will suggest relevant parts of the query and highlight errors.
-
Click Run.
In the results panel, you will see a table with the query results.
When editing or running a query, you can use the following keyboard shortcuts (click to see the full list):
- Show suggestions: Ctrl + I , Ctrl + Space.
- Comment out a line: Ctrl + /.
- Run a query: Ctrl + Enter.
- Show suggestions: ⌘ + I , ⌃ + Space.
- Comment out a line: ⌘ + /.
- Run a query: ⌘ + ⏎.
Click
You can view your executed queries in query history and save them as templates.
Pagination
You can use pagination in the query editor to manage result outputs. With pagination, you can:
-
Switch between pages:
: First page : Previous page : Next page : Last page
-
Select the number of rows displayed per page. To do this, click the field with the number of rows (between the arrows) and select the appropriate limit.
-
Get the total number of rows by clicking Total rows.
Each action you take with pagination re-runs the query and is logged in the query history.
Multi-queries
In the query editor, you can use multi-queries, enabling you to run multiple queries as a single batch. These queries are executed within a single database session.
Multi-query example:
SELECT * FROM <table_1_name> LIMIT 10;
INSERT INTO <table_2_name>;
To run individual subqueries within a multi-query, highlight one or more subqueries and click Run current query. The editor will display the progress status of the highlighted queries.
Exporting query execution results
To save the results in a format you like:
- Click Export in the top-right corner of the panel with the results table.
- Select the format:
JSON,CSVorTSV.
A file with the results will be added to your browser's downloads section.
Setting up the query editor
Yandex WebSQL enables you to quickly edit your queries, including with features, such as context help or SQL syntax and error highlighting. To manage these features:
- Click
Settings in the bottom-left corner. - Go to the Query editor section.
- Customize the editor theme (
Visual StudioorHigh Contrast), font size and type, and the following editing feature options:- Editor tips
- Syntax highlighting
- Error highlighting
- Editor minimap
- Autoclosing of quotes
- Autoclosing of parentheses
ClickHouse® is a registered trademark of ClickHouse, Inc