Lines Matching refs:select
14 protected $select = [];
35 * Adds a column to select
39 * @param string $tablealias The table to select from
40 * @param string $column The column to select
49 $this->select[$alias] = "$tablealias.$column";
58 * select things like fixed strings or more complex function calls, but the correctness will not
66 $this->select[$alias] = $statement;
78 if (!isset($this->select[$alias])) {
79 throw new StructException('No such select alias');
82 return $this->select[$alias];
223 // prepare aliases for the select columns
225 foreach ($this->select as $alias => $select) {
226 $selects[] = "$select AS $alias";