Created
May 13, 2015 18:29
-
-
Save dmregister/fb753338797f18fbab58 to your computer and use it in GitHub Desktop.
select
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sql = new Sql($this->adapter); | |
$select = $sql->select()->columns(array('c.city', 'c.state', 's.count'), false) | |
->from(array('s' => 'statistic')) | |
->join(array('c' => 'city'), 's.city_id = c.id'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment