AddHavingCondition Method
Adds new condition to HAVING clause of the statement, represented by the
Having property.
The following example demonstrates how to use the
AddHavingCondition method.
DB2SelectStatement stmt = new DB2SelectStatement();
stmt.Columns.Add(new SelectColumn("EMP"));
stmt.Columns.Add(new SelectColumn("SAL"));
stmt.Tables.Add(new SelectTable("emp"));
stmt.AddHavingCondition("SAL > 1000");
//select JOB,SAL from emp having SAL > 1000
DB2Command command = new DB2Command(stmt.ToString());
Dim stmt As New DB2SelectStatement
stmt.Columns.Add(New SelectColumn("EMP"))
stmt.Columns.Add(New SelectColumn("SAL"))
stmt.Tables.Add(New SelectTable("emp"))
stmt.AddHavingCondition("SAL > 1000")
'select JOB,SAL from emp having SAL > 1000
Dim command As New DB2Command(stmt.ToString)