MCPcopy
hub / github.com/jOOQ/jOOQ / ntile

Method ntile

jOOQ/src/main/java/org/jooq/impl/DSL.java:35336–35340  ·  view source on GitHub ↗

The ntile([number]) over ([analytic clause]) function.

(int number)

Source from the content-addressed store, hash-verified

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.

Callers 1

parseFieldNtileIfMethod · 0.80

Calls 1

inlineMethod · 0.95

Tested by

no test coverage detected