ISqlHavingAndOr<TBuilder>.AndHaving Method
.NET Standard 2.x
Adds the AND logical operator and a search condition to the HAVING clause.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
AndHaving(string left, ISqlParameter parameter) | Adds the AND logical operator and a search condition to the HAVING clause. Specifies a SQL expression to the left of the operator and a SQL parameter to the right of the operator. The operator is '='. |
AndHaving(string left, SqlBinaryOperator sqlOperator, ISqlParameter parameter) | Adds the AND logical operator and a search condition to the HAVING clause. Specifies a SQL expression to the left of the operator and a SQL parameter to the right of the operator. |
AndHaving(string left, string right) | Adds the AND logical operator and a search condition to the HAVING clause. Specifies SQL expressions on both the left and right of the operator. The operator is '='. |
AndHaving(string left, SqlBinaryOperator sqlOperator, string right) | Adds the AND logical operator and a search condition to the HAVING clause. Specifies SQL expressions on both the left and right of the operator. |
AndHaving(string left, ISqlBuilder sqlBuilder) | Adds the AND logical operator and a search condition to the HAVING clause. Specifies a SQL expression on the left of the operator and a SQL subquery on the right of the operator. The operator is '='. |
AndHaving(string left, SqlBinaryOperator sqlOperator, ISqlBuilder sqlBuilder) | Adds the AND logical operator and a search condition to the HAVING clause. Specifies a SQL expression on the left of the operator and a SQL subquery on the right of the operator. |
AndHaving(ISqlJoinCondition condition) | Adds the AND logical operator and a search condition (specified by an ISqlHavingCondition object) to the HAVING clause. |