The ntile([number]) over ([analytic clause]) function.
(int number)
| 35334 | * The <code>ntile([number]) over ([analytic clause])</code> function. |
| 35335 | */ |
| 35336 | @NotNull |
| 35337 | @Support({ CLICKHOUSE, CUBRID, DUCKDB, FIREBIRD, H2, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) |
| 35338 | public static WindowOverStep<Integer> ntile(int number) { |
| 35339 | return new Ntile(inline(number)); |
| 35340 | } |
| 35341 | |
| 35342 | /** |
| 35343 | * The <code>ntile([number]) over ([analytic clause])</code> function. |
no test coverage detected