书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 7812 个相关结果.
  • Create accounts, Verify Resource Isolation

    Quick Start: Create accounts, Verify Resource Isolation Before you start Steps Quick Start: Create accounts, Verify Resource Isolation When initializing access to the MatrixOn...
  • 聚合查询的执行计划

    用 EXPLAIN 查看聚合查询执行计划 示例 Hash Aggregation 用 EXPLAIN 查看聚合查询执行计划 SQL 查询中可能会使用聚合计算,可以通过 EXPLAIN 语句来查看聚合查询的执行计划。 示例 我们这里准备一个简单的示例,帮助你理解使用 EXPLAIN 解读聚合查询的执行计划。 > drop table if ...
  • Create accounts, Verify Resource Isolation

    Quick Start: Create accounts, Verify Resource Isolation Before you start Steps Quick Start: Create accounts, Verify Resource Isolation When initializing access to the MatrixOn...
  • 聚合查询的执行计划

    用 EXPLAIN 查看聚合查询执行计划 示例 Hash Aggregation 用 EXPLAIN 查看聚合查询执行计划 SQL 查询中可能会使用聚合计算,可以通过 EXPLAIN 语句来查看聚合查询的执行计划。 示例 我们这里准备一个简单的示例,帮助你理解使用 EXPLAIN 解读聚合查询的执行计划。 > drop table if ...
  • Create accounts, Verify Resource Isolation

    Create accounts, Verify Resource Isolation Before you start Steps Create accounts, Verify Resource Isolation When initializing access to the MatrixOne cluster, the system will...
  • SUBPLAN SCAN

    SUBPLAN SCAN 算子用于展示优化器从哪个视图访问数据。 当查询的 FROM TABLE 为视图时,执行计划中会分配 SUBPLAN SCAN 算子。SUBPLAN SCAN 算子类似于 TABLE SCAN 算子,但它不从基表读取数据,而是读取孩子节点的输出数据。 如下示例中,Q1 查询中 1 号算子为视图中查询生成,0 号算子 SUBPLA...
  • TRIM()

    TRIM() Description Syntax Arguments Examples TRIM() Description This function TRIM() returns the string str with all remstr prefixes or suffixes removed. If none of...
  • DATE()

    DATE() Description Syntax Arguments Examples Constraints DATE() Description Extracts the date part of the date or datetime expression expr. Syntax > DATE ( exp...
  • WINDOW FUNCTION

    WINDOW FUNCTION 算子用于实现 SQL 中的分析函数(也叫窗口函数),计算窗口下的相关行的结果。 窗口函数与聚集函数不同的是,聚集函数一组只能返回一行,而窗口函数每组可以返回多行,组内每一行都是基于窗口的逻辑计算的结果。因此,在执行含有 WINDOW FUNCTION 的 SQL 时 (格式一般为 OVER(...) ),都会在生成执行计划...
  • JOIN

    NESTED LOOP JOIN (NLJ) MERGE JOIN (MJ) HASH JOIN (HJ) JOIN 算子用于将两张表的数据,按照特定的条件进行联接。 JOIN 的类型主要包括内联接(INNER JOIN)、外联接(OUTER JOIN)和半联接(SEMI/ANTI JOIN)三种。 OceanBase 数据库支持的 JOIN 算...