Autocomplete

It describes the auto complete in SQL Editor.

자동완성 UI

SQL keywords

Automatically display a list of related keywords as the users write code.

Object Autocomplete

  • Display a list of Tables, Views, Materialized Views, and Synonyms in the current schema after the FROM clause.

  • Displays a list of Tables, Views, Materialized Views, and Synonyms that belong to the schema after the FROM clause.

  • Displays a list of Tables, Views, Materialized Views, and Synonyms after the INTO clause in an INSERT statement.

  • List of columns after VALUES clause in INSERT statement.

  • Display Procedure, Function list in CALL statement.

  • Lists columns of created objects after the FROM clause in SELECT statement.

Object Details

The object list shows the detailed information of the object.

How to call

Ctrl + Space or . to force call it, and it automatically displays the list containing the entered string by default.

How to input

The users can enter the contents of the list into the editor by clicking on the list or pressing Enter key.

Last updated