如何用jOOQ表达这种说法?
SELECT version FROM abc ORDER BY string_to_array(version, '.', '')::int[] desc limit 1
我正在努力与功能和演员组合。
答案 0 :(得分:4)
您有多种选择。
Field<Integer[]> f1 =
DSL.field("string_to_array(version, '.', '')::int[]", Integer[].class);
Field<Integer[]> stringToIntArray(Field<String> arg1, String arg2, String arg3) {
return DSL.field("string_to_array({0}, {1}, {2})::int[]", Integer[].class,
arg1, DSL.val(arg2), DSL.val(arg3));
}
// and then...
Field<Integer[]> f2 = stringToIntArray(ABC.VERSION, ".", "");
Field<Integer[]> f3 = Routines.stringToArray(ABC.VERSION, DSL.val("."), DSL.val(""))
.cast(Integer[].class);
内置函数是pg_catalog
数据库中postgres
架构的一部分。
DSL.using(configuration)
.select(ABC.VERSION)
.from(ABC)
.orderBy(fN.desc()) // place any of f1, f2, f3 here
.limit(1)
.fetch();