书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 7812 个相关结果.
  • Explain Statements Using Aggregation

    Explain Statements Using Aggregation Example Hash Aggregation Explain Statements Using Aggregation The aggregation may be used in SQL, and the execution plan of the aggregate ...
  • WINDOW FUNCTION

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

    WEEKDAY() Description Syntax Arguments Examples WEEKDAY() Description Returns the weekday index for date (0 = Monday, 1 = Tuesday, … 6 = Sunday). Returns NULL if da...
  • WEEKDAY()

    WEEKDAY() Description Syntax Arguments Examples WEEKDAY() Description Returns the weekday index for date (0 = Monday, 1 = Tuesday, … 6 = Sunday). Returns NULL if da...
  • EXCEPT/MINUS

    MERGE EXCEPT DISTINCT HASH EXCEPT DISTINCT EXCEPT 算子用于对左右孩子算子输出集合进行差集运算,并进行去重。 Oracle 模式下一般使用 MINUS 进行差集运算,MySQL 模式下一般使用 EXCEPT 进行差集运算。OceanBase 数据库的 MySQL 模式不区分 EXCEPT 和 MINUS...
  • 基于代价的查询改写

    或展开(OR-EXPANSION) OceanBase 数据库目前只支持一种基于代价的查询改写——或展开(OR-EXPANSION)。 数据库中很多高级的改写规则(例如 complex view merge 和窗口函数改写)都需要基于代价进行改写,OceanBase 数据库后续版本会支持这些复杂的改写规则。 或展开(OR-EXPANSION) O...
  • UPDATE

    UPDATE Description Syntax Single-table Syntax Explanations Examples UPDATE Description The UPDATE statement is used to modify the existing records in a table. Sy...
  • >=

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

    <>,!= Description Syntax Examples <>,!= Description The <>,!= operator returns true only if the left-hand operand is not equal to the right-hand operand. Syntax >...
  • DELETE

    DELETE 语法说明 语法结构 单表语法结构 参数释义 示例 DELETE 语法说明 DELETE 用于删除单表或多表中的记录。 语法结构 单表语法结构 DELETE FROM tbl_name [[ AS ] tbl_alias ] [ WHERE where_condition ] ...