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

com.easy.query.api4j.select.extension.queryable.SQLGroupable1 Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package com.easy.query.api4j.select.extension.queryable;

import com.easy.query.api4j.select.Queryable;
import com.easy.query.api4j.sql.SQLGroupBySelector;
import com.easy.query.core.expression.lambda.SQLExpression1;

/**
 * create time 2023/8/16 08:49
 * 文件说明
 *
 * @author xuejiaming
 */
public interface SQLGroupable1 {

    default Queryable groupBy(SQLExpression1> selectExpression) {
        return groupBy(true, selectExpression);
    }

    Queryable groupBy(boolean condition, SQLExpression1> selectExpression);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy