> So would this have the intended effect?
>
> step.leftOuterJoin(Factory.tableByName("sometable").as("somealias")).on(condition);
Yes this would work. An example:
create.select()
.from(tableByName("PRODUCTS").as("p"))
.where(fieldByName("p", "NUMBER").equal("1234"))
.fetch();
Cheers
Lukas
