Remove condition

Is there a simple way to remove some conditions from query?

For example,




$query = new Query;

$query->andWhere(...);


$statQuery = clone $query;

$statQuery->removeWhere(...);



No.