As far as you probably know in ZF2 there is no "orWhere()" metod anymore.
In that case creating "OR WHERE" condition is a little bit tricky, but still doable without writing pure SQL code.
We will make use of so called Predicates
more
$select = new Select();
$select->from('tableName');
// This is where
Comments are closed