Skip to content

Instantly share code, notes, and snippets.

@jmvelasco
Created February 3, 2014 15:34
Show Gist options
  • Save jmvelasco/8786014 to your computer and use it in GitHub Desktop.
Save jmvelasco/8786014 to your computer and use it in GitHub Desktop.
$rowset = $this->tableGateway->select(function (\Zend\Db\Sql\Select $select) use ($pictureSrc, $country) {
$select->columns(array('count' => new \Zend\Db\Sql\Expression('COUNT(*)')));
$select->where(array('country_code' => $country, 'picture' => $pictureSrc));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment