Hi Ryan, An explicit asterisk operator is not yet supported. There is a long-term roadmap feature request for MYTABLE.* support, though. https://github.com/jOOQ/jOOQ/issues/1677
As always, you have various options. In this particular case, please refer to this Stack Overflow question: http://stackoverflow.com/a/5845043/521799 Cheers Lukas 2013/8/15 Ryan How <[email protected]> > Is there an easy way to select all columns + some extra column? > > eg. > > SELECT *, COUNT FROM MYTABLE; > > I might be missing something obvious, but I have been doing > create.select(Util.combine(Table.getFields(), OtherTable.getFields(), > whateverElseIwant)).from(Table.join(.... > > Where Util.combine just sticks them all in 1 big array. > > Thanks! > > Ryan > > -- > You received this message because you are subscribed to the Google Groups > "jOOQ User Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
