Hi Sergey, > The same issue found with SimpleSelectWhereStep. > It seems we can not combine "connect by" and "selectFrom".
That is on purpose. The "simple" select query has been kept simple intentionally. You cannot specify a CONNECT BY clause on the underlying org.jooq.SimpleSelectQuery either. Do you see a use case for the CONNECT BY clause, when you can't specify custom projections? Maybe I'm missing something...? Cheers Lukas 2011/11/13 Sergey Epik <[email protected]>: > Hello Lukas, > >> > 1. We can not use "connect by" clause if we use "where" before in select >> > statement, because of SelectConditionStep extends SelectGroupByStep >> > instead >> > of SelectConnectByStep. >> > > The same issue found with SimpleSelectWhereStep. > It seems we can not combine "connect by" and "selectFrom". > > Best regards, > Sergey > >
