书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 7812 个相关结果.
  • MATERIAL

    MATERIAL 算子用于物化下层算子输出的数据。 OceanBase 数据库以流式数据执行计划,但有时算子需要等待下层算子输出所有数据后才能够开始执行,所以需要在下方添加一个 MATERIAL 算子物化所有的数据。或者在子计划需要重复执行的时候,使用 MATERIAL 算子可以避免重复执行。 如下示例中,t1 表与 t2 表执行 NESTED LOO...
  • SHOW INDEXES [FROM|IN]

    SHOW INDEXES [FROM|IN] Synopsis Examples MySQL compatibility See also SHOW INDEXES [FROM|IN] The statement SHOW INDEXES [FROM|IN] lists the indexes on a specified table. Th...
  • LEFT()

    LEFT() 函数说明 函数语法 参数释义 示例 LEFT() 函数说明 LEFT() 函数返回 str 字符串中最左边的长度字符。如果 str 或 len 参数为 NULL ,则返回 NULL 值。 函数语法 > LEFT ( str , len ) 参数释义 参数 说明 str 必要参数。要提取子字符串...
  • SELECT INTO

    SELECT INTO 算子用于将查询结果赋值给变量列表,查询仅返回一行数据。 如下示例查询中, SELECT 输出列为 COUNT(*) 和 MAX(c1) ,其查询结果分别赋值给变量 @a 和 @b。 obclient > CREATE TABLE t1 ( c1 INT , c2 INT ); Query OK , 0 rows...
  • <=

    <= Description Syntax Examples <= Description The <= operator returns true only if the left-hand operand is less than or equal to the right-hand operand. Syntax >...
  • >

    > Description Syntax Examples > Description The > operator returns true only if the left-hand operand is greater than the right-hand operand. Syntax > SELECT x ...
  • <=

    <= Description Syntax Examples <= Description The <= operator returns true only if the left-hand operand is less than or equal to the right-hand operand. Syntax >...
  • >

    > Description Syntax Examples > Description The > operator returns true only if the left-hand operand is greater than the right-hand operand. Syntax > SELECT x ...
  • 案例:调整查询重写GUC参数rewrite_rule

    案例:调整查询重写GUC参数rewrite_rule 目标列子查询提升参数intargetlist 提升无agg的子查询uniquecheck 案例:调整查询重写GUC参数rewrite_rule rewrite_rule包含了多个查询重写规则:magicset、partialpush、uniquecheck、disablerep、intarget...
  • DELETE

    描述 格式 参数解释 示例 注意事项 描述 该语句用来删除表中符合条件的行,包括单表删除及多表删除两种方式。 格式 Single - Table - Delete Syntax : DELETE [ hint_options ] FROM tbl_name [ PARTITION ( partitio...