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

com.easy.query.api4j.select.extension.queryable.SQLHavingable1 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.SQLWhereAggregatePredicate;
import com.easy.query.core.expression.lambda.SQLExpression1;

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


    default Queryable having(SQLExpression1> predicateExpression) {
        return having(true, predicateExpression);
    }

    Queryable having(boolean condition, SQLExpression1> predicateExpression);


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy