* @return the new DBCommandExpr object
*/
public DBCommandExpr createCombinedCommand(DBCommandExpr left, String keyWord, DBCommandExpr right)
{
// Override CombinedCmd
return new DBCombinedCmd(left, keyWord, right) {
private static final long serialVersionUID = 1L;
protected int limit = -1;
protected int skip = -1;
@Override
public void limitRows(int numRows)