◆ aggregateUnpivot() [1/2]
| inline |
Rotate the column values into rows values.
For unpivot details and examples, see Unpivot. For limitations, see Unpivot Limitations.
Unpivot is used to normalize tables that are built for cross tabular reporting purposes. The unpivot operator rotates the column values for all the pivoted columns. A variable column, value column and all columns from the source table except the unpivot columns are projected into the result table. The variable column and value columns in the result table indicate the pivoted column name and values respectively.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
| request_ | Request object containing the parameters for the operation. |
Definition at line 7471 of file KineticaFunctions.cs.
◆ aggregateUnpivot() [2/2]
| inline |
Rotate the column values into rows values.
For unpivot details and examples, see Unpivot. For limitations, see Unpivot Limitations.
Unpivot is used to normalize tables that are built for cross tabular reporting purposes. The unpivot operator rotates the column values for all the pivoted columns. A variable column, value column and all columns from the source table except the unpivot columns are projected into the result table. The variable column and value columns in the result table indicate the pivoted column name and values respectively.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
| table_name | Name of the table on which the operation will be performed. Must be an existing table/view, in [schema_name.]table_name format, using standard name resolution rules. |
| column_names | List of column names or expressions. A wildcard ’*’ can be used to include all the non-pivoted columns from the source table. |
| variable_column_name | Specifies the variable/parameter column name. The default value is ”. |
| value_column_name | Specifies the value column name. The default value is ”. |
| pivoted_columns | List of one or more values typically the column names of the input table. All the columns in the source table must have the same data type. |
| options | Optional parameters.
|
Definition at line 7767 of file KineticaFunctions.cs.
◆ AggregateUnpivotAsync() [1/2]
| inline |
Rotate the column values into rows values.
(async)
For unpivot details and examples, see Unpivot. For limitations, see Unpivot Limitations.
Unpivot is used to normalize tables that are built for cross tabular reporting purposes. The unpivot operator rotates the column values for all the pivoted columns. A variable column, value column and all columns from the source table except the unpivot columns are projected into the result table. The variable column and value columns in the result table indicate the pivoted column name and values respectively.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
| request_ | Request object containing the parameters for the operation. |
| cancellationToken | Cancellation token to cancel the operation. |
Definition at line 7507 of file KineticaFunctions.cs.
◆ AggregateUnpivotAsync() [2/2]
| inline |
Rotate the column values into rows values.
(async)
For unpivot details and examples, see Unpivot. For limitations, see Unpivot Limitations.
Unpivot is used to normalize tables that are built for cross tabular reporting purposes. The unpivot operator rotates the column values for all the pivoted columns. A variable column, value column and all columns from the source table except the unpivot columns are projected into the result table. The variable column and value columns in the result table indicate the pivoted column name and values respectively.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
| table_name | Name of the table on which the operation will be performed. Must be an existing table/view, in [schema_name.]table_name format, using standard name resolution rules. |
| column_names | List of column names or expressions. A wildcard ’*’ can be used to include all the non-pivoted columns from the source table. |
| variable_column_name | Specifies the variable/parameter column name. The default value is ”. |
| value_column_name | Specifies the value column name. The default value is ”. |
| pivoted_columns | List of one or more values typically the column names of the input table. All the columns in the source table must have the same data type. |
| options | Optional parameters.
|
| cancellationToken | Cancellation token to cancel the operation. |
Definition at line 8028 of file KineticaFunctions.cs.