de.ec.sql.BeforeHaving Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder Show documentation
Show all versions of sqlbuilder Show documentation
Java builder to create SQL statements
package de.ec.sql;
public interface BeforeHaving extends QueryPart {
default Having having() {
return new Having(this);
}
default Having having(final Having having) {
return having.builder(this);
}
default Having havingSQL(final String sql) {
return having().sql(sql);
}
}