We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Select select = SelectUtils.buildSelectFromTable(new Table("mytable"));
select contains now select * from mytable.
Select select = SelectUtils.buildSelectFromTableAndExpressions(new Table("mytable"), new Column("a"), new Column("b"));
select contains now select a, b from mytable.