[SQL] pobierz, plaintext UPDATE product SET STATUS = 1 WHERE producentId = ? AND date != '2015-09-07';[SQL] pobierz, plaintext
[PHP] pobierz, plaintext ->update(function(Update $update) use ($producentId){ $update->set(array('status' => 1)) ->where(function(Where $where) use ($producentId) { $where->equalTo('producentId', $producentId) ->notEqualTo('date', '2015-09-07'); });});[PHP] pobierz, plaintext