| 1 | <?php |
||
| 20 | class Select extends Common\Select |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * |
||
| 24 | * Adds a LATERAL JOIN to an aliased subselect and columns to the query. |
||
| 25 | * |
||
| 26 | * @param string $join The join type: inner, left, natural, etc. |
||
| 27 | * |
||
| 28 | * @param string|Select $spec If a Select |
||
| 29 | * object, use as the sub-select; if a string, the sub-select |
||
| 30 | * command string. |
||
| 31 | * |
||
| 32 | * @param string $name The alias name for the sub-select. |
||
| 33 | * |
||
| 34 | * @param string $cond Join on this condition. |
||
| 35 | * |
||
| 36 | * @param array $bind Values to bind to ?-placeholders in the condition. |
||
| 37 | * |
||
| 38 | * @return $this |
||
| 39 | * |
||
| 40 | * @throws Exception |
||
| 41 | * |
||
| 42 | */ |
||
| 43 | public function lateralJoinSubSelect($join, $spec, $name, $cond = null, array $bind = array()) |
||
| 55 | } |
||
| 56 |