Updated on 2023-12-13 GMT+08:00

Creating a View

This section describes how to create a view on the DAS console.

Procedure

  1. Log in to the management console.
  2. Click in the upper left corner and select a region and project.
  3. Click in the upper left corner, and under Databases, click Data Admin Service.
  4. In the navigation pane on the left, choose Development Tool.

    You can also click Go to Development Tool on the overview page.

  5. Locate the DB instance that you want to log in to and click Log In in the Operation column.
  6. On the top menu bar, choose Database Management.
  7. Click Change on the right of the current database to switch to the database where you want to create a view.

    Figure 1 Switching to another database

  8. On the Objects tab page, choose Views.
  9. In the upper left corner of the page, click Create View.
  10. On the displayed page, configure basic information.

    Figure 2 Configuring parameters
    Table 1 Parameter description

    Parameter

    Description

    View Name

    (Mandatory) Enter a view name.

    Definer

    Enter a definer.

    Algorithm

    (Optional) You can leave this parameter blank or set it to MERGE, TEMPTABLE, or UNDEFINED.

    • UNDEFINED: The required algorithm is automatically selected.
    • MERGE: A combination algorithm. Executing this algorithm will combine and execute SQL statements of the view and those of the external query view.
    • EMPTABLE: The result is stored in a temporary table for query.

    Security

    (Optional) You can leave this parameter blank or set it to DEFINER or INVOKER.

    • DEFINER: When the view is executed, the user account specified by DEFINER will be used to check access privileges for the view.
    • INVOKER: When the view is executed, the user account specified by INVOKER will be used to check access privileges for the view.

    Check Option

    (Optional) You can leave this parameter blank or set it to LOCAL or CASCADED.

    • If you select CASCADED for Check Option, the view that the current view depends on will also have the check option.
    • If you select LOCAL for Check Option, the system checks whether the view that the current view depends on has check options. If yes, the system checks the view that the current view depends on. If no, the system does not check the view.

    View Definition Statement

    Enter a SQL statement for creating the view. You only need to enter the SELECT part.

  11. Click Create at the bottom of the page.
  12. In the displayed dialog box, click Execute.