In Nette 2.3 is added support for += and -= in UPDATE statement.
How to use += in code?
$activeRow = $this->findBy( array( “id” ⇒ 1) )->limit( 1 )->fetch();
How to increment column name count ?
$activeRow->update(['count+=' => 1]);