You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The COUNT_BIG function returns the number of rows or values in a set of rows or values. It is similar to COUNT except that the result can be greater than the maximum value of integer."
"description": "The COVAR_SAMP function returns the unbiased sample covariance (n-1) of a set of number pairs."
52
+
},
53
+
"grouping": {
54
+
"prefix": "grouping",
55
+
"body": "grouping(${1:expression})",
56
+
"description": "Used in conjunction with grouping-sets and super-groups, the GROUPING aggregate function returns a value that indicates whether a row returned in a GROUP BY answer set is a row generated by a grouping set that excludes the column represented by expression."
57
+
},
58
+
"json_arrayagg": {
59
+
"prefix": "json_arrayagg",
60
+
"body": "json_arrayagg(${1:json-expression})",
61
+
"description": "The JSON_ARRAYAGG function returns a JSON array containing an array element for each value in a set of JSON or SQL values."
62
+
},
63
+
"json_objectagg": {
64
+
"prefix": "json_objectagg",
65
+
"body": "json_objectagg( key ${1:key-name-expression} value ${2:json-expression})",
66
+
"description": "The JSON_OBJECTAGG function returns a JSON object containing a key:value pair for each specific key and value in a set of SQL values."
"description": "The LISTAGG function aggregates a set of string elements into one string by concatenating the strings. Optionally, a separator string can be provided which is inserted between contiguous input strings."
"description": "The MIN aggregate function returns the minimum value in a set of values in a group."
87
+
},
88
+
"percentile_cont": {
89
+
"prefix": "percentile_cont",
90
+
"body": "percentile_cont(${1:percentile-expression}) WITHIN GROUP (ORDER BY ${2:sort-expression})",
91
+
"description": "The PERCENTILE_CONT function returns the value that corresponds to the specified percentile given a sort specification by using a continuous distribution model."
92
+
},
93
+
"percentile_disc": {
94
+
"prefix": "percentile_disc",
95
+
"body": "percentile_disc(${1:percentile-expression}) WITHIN GROUP (ORDER BY ${2:sort-expression})",
96
+
"description": "The PERCENTILE_DISC function returns the value that corresponds to the specified percentile given a sort specification by using a discrete distribution model."
"description": "The REGR_AVGX functions return quantities that can be used to compute various diagnostic statistics needed for the evaluation of the quality and statistical validity of the regression model."
"description": "The REGR_AVGY functions return quantities that can be used to compute various diagnostic statistics needed for the evaluation of the quality and statistical validity of the regression model."
"description": "The REGR_SXX functions return quantities that can be used to compute various diagnostic statistics needed for the evaluation of the quality and statistical validity of the regression model."
"description": "The REGR_SXY functions return quantities that can be used to compute various diagnostic statistics needed for the evaluation of the quality and statistical validity of the regression model."
"description": "The REGR_SYY functions return quantities that can be used to compute various diagnostic statistics needed for the evaluation of the quality and statistical validity of the regression model."
0 commit comments