Getting Started with SQL Editor

Learn the basic usage and environment settings of the SQL Editor.

Open SQL Editor

Open the SQL Editor and prepare to write queries.

1

Click SQL Editor Tab

Click "SQL Editor" in the top menu or left panel.

2

Select Connection

Select the database connection to execute queries against.

3

Write & Execute Query

Enter SQL in the editor and press the execute button (or Ctrl/Cmd + Enter).

SQL Editor 화면

Toolbar

Execute key functions from the SQL Editor toolbar at the top.

ButtonDescription
EXECUTEExecute the SQL statement at the current cursor position
RUN SCRIPTExecute the entire SQL script in the editor sequentially
CANCELCancel the currently running query
PLANView the query execution plan (Explain Plan)
Auto CommitToggle auto commit mode on or off
FORMATFormat SQL. Choose between Format Statement (current statement, Ctrl+Shift+F) and Format All (entire script)
Schema / DatabaseSelect the default schema and database for query execution
SQL Editor 툴바

Edit Data

Directly edit, add, and delete data in the query result grid.

1

Edit Cell

Click a cell in the result grid to directly modify its value. Modified cells are highlighted in yellow.

2

Add / Duplicate / Delete Row

Use the ADD, DUPLICATE, DELETE buttons in the bottom toolbar to add, duplicate, or delete rows.

3

Preview & Apply Changes

Click PREVIEW CHANGES to review the SQL (UPDATE, INSERT, DELETE) corresponding to the changes (edits/additions/deletions). Use the include schema option to add the schema name to the SQL. Execute directly with EXECUTE or copy with COPY SQL.

4

Discard Changes

Click the DISCARD button to cancel all unapplied changes.

데이터 수정

Export Results

Export query results to a file.

FormatDescription
CSVExport as a comma-separated text file
JSONExport in JSON format
XLSXExport as an Excel spreadsheet file
결과 내보내기

Execution History

View the history of previously executed SQL statements. In the history tab, view execution time, SQL statements, and execution results, and reload previous queries back into the editor.

실행 히스토리

Keyboard Shortcuts

Frequently used keyboard shortcuts in the SQL Editor.

ShortcutAction
Ctrl/Cmd + EnterExecute current query
Ctrl/Cmd + Shift + EnterExecute selected area only
Ctrl/Cmd + Shift + FFormat current SQL statement (Format Statement)
Ctrl/Cmd + SSave query
Ctrl/Cmd + /Toggle comment on selected lines