| Package | Description |
|---|---|
| com.snowflake.snowpark_java |
Provides most of the classes for the Snowpark Java API.
|
| Modifier and Type | Method and Description |
|---|---|
RelationalGroupedDataFrame |
DataFrame.cube(Column... cols)
Performs an SQL GROUP BY
CUBE on the DataFrame.
|
RelationalGroupedDataFrame |
DataFrame.cube(String... colNames)
Performs an SQL GROUP BY
CUBE on the DataFrame.
|
RelationalGroupedDataFrame |
DataFrame.groupBy(Column... cols)
Groups rows by the columns specified by expressions (similar to GROUP BY in SQL).
|
RelationalGroupedDataFrame |
DataFrame.groupBy(String... colNames)
Groups rows by the columns specified by name (similar to GROUP BY in SQL).
|
RelationalGroupedDataFrame |
DataFrame.groupByGroupingSets(GroupingSets... sets)
Performs an SQL GROUP BY
GROUPING SETS on the DataFrame.
|
RelationalGroupedDataFrame |
DataFrame.pivot(Column pivotColumn,
Object[] values)
Rotates this DataFrame by turning the unique values from one column in the input expression
into multiple columns and aggregating results where required on any remaining column values.
|
RelationalGroupedDataFrame |
DataFrame.pivot(String pivotColumn,
Object[] values)
Rotates this DataFrame by turning the unique values from one column in the input expression
into multiple columns and aggregating results where required on any remaining column values.
|
RelationalGroupedDataFrame |
DataFrame.rollup(Column... cols)
Performs an SQL GROUP BY
ROLLUP on the DataFrame.
|
RelationalGroupedDataFrame |
DataFrame.rollup(String... colNames)
Performs an SQL GROUP BY
ROLLUP on the DataFrame.
|
© 2022 Snowflake Inc. All Rights Reserved