ISqlHavingBuilder.Having Method
.NET Standard 2.x
Creates a HAVING clause, and adds a search condition to the HAVING clause.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
Having(string left, ISqlParameter parameter) | Creates a HAVING clause, and adds a search condition to the HAVING clause. You can specify a SQL expression on the left of the operator and a SQL parameter on the right of the operator. The operator is '='. |
Having(string left, SqlBinaryOperator sqlOperator, ISqlParameter parameter) | Creates a HAVING clause and adds a search condition to the HAVING clause. You can specify a SQL expression on the left of the operator and a SQL parameter on the right of the operator. |
Having(string left, string right) | Creates a HAVING clause and adds a search condition to the HAVING clause. You can specify SQL expressions on both the left and right of the operator. The operator is '='. |
Having(string left, SqlBinaryOperator sqlOperator, string right) | Creates a HAVING clause and adds a search condition to the HAVING clause. You can specify SQL expressions on both the left and right of the operator. |
Having(string left, ISqlBuilder sqlBuilder) | Creates a HAVING clause and adds a search condition to the HAVING clause. You can specify a SQL expression on the left of the operator and a SQL subquery on the right side. The operator is '='. |
Having(string left, SqlBinaryOperator sqlOperator, ISqlBuilder sqlBuilder) | Creates a HAVING clause and adds a search condition to the HAVING clause. You can specify a SQL expression on the left of the operator and a SQL subquery on the right side. |
Having(ISqlHavingCondition condition) | Creates a HAVING clause, and adds a search condition to the HAVING clause by an ISqlHavingCondition object. |
Having(ISqlHavingCondition condition, string havingName) | Creates a HAVING clause, and adds a search condition to the HAVING clause by an ISqlHavingCondition object and specifies the name for the search condition. |