All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.sql.api.cmd.executor.method.groupByMethod.IGroupBySubQueryMultiGetterMethod Maven / Gradle / Ivy

package db.sql.api.cmd.executor.method.groupByMethod;


import db.sql.api.Getter;
import db.sql.api.cmd.executor.ISubQuery;

public interface IGroupBySubQueryMultiGetterMethod {

     SELF groupBy(ISubQuery subQuery, Getter... columns);

    default  SELF groupBy(boolean when, ISubQuery subQuery, Getter... columns) {
        if (!when) {
            return (SELF) this;
        }
        return this.groupBy(subQuery, columns);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy