zoukankan      html  css  js  c++  java
  • SAPHANA学习(22):SQL Function(V)

    /*

    148.VAR

    Aggregate function:

    VAR( [ ALL | DISTINCT ] <expression> )

    Window function:

    VAR( <expression> ) <window_specification>

    Returns the variance of the given expression as the square of the standard deviation.

    方差

    VAR_POP(<expression>)

    Returns the population variance of an expression.

    VAR_SAMP(<expression>)

    Returns the sample variance of an expression.

    */

    SELECT VAR("Price") FROM "MyProducts";
    SELECT VAR_POP("Price") FROM "MyProducts";
    SELECT VAR_SAMP("Price") FROM "MyProducts";
  • 相关阅读:
    jQuery-css
    了解jQuery
    jQuery属性
    jQuery常用效果
    jQuery_$工具方法
    jQuery选择器
    jQuery核心对象
    $
    jQuery两把利器
    JavaScriptDOM
  • 原文地址:https://www.cnblogs.com/tangToms/p/13939793.html
Copyright © 2011-2022 走看看