| 7 query.inc | public InsertQuery::from(SelectQueryInterface $query) |
Sets the fromQuery on this InsertQuery object.
Parameters
SelectQueryInterface $query: The query to fetch the rows that should be inserted.
Return value
InsertQuery The called object.
File
- includes/
database/ query.inc, line 605 - Non-specific Database query code. Used by all engines.
Code
public function from(SelectQueryInterface $query) {
$this->fromQuery = $query;
return $this;
}
Login or register to post comments