IDEACodeTools icon indicating copy to clipboard operation
IDEACodeTools copied to clipboard

SQL to JOOQ error: select count(distinct c1) from t1

Open EasonYi opened this issue 3 years ago • 0 comments

The code trying to convert

SQL:
select count(distinct c1) from t1

JOOQ:
now: count(c1)
want: countDistinct(c1)

The error msg:

EasonYi avatar Jul 06 '22 07:07 EasonYi