Sets the fromQuery on this InsertQuery object.
SelectQueryInterface $query: The query to fetch the rows that should be inserted.
InsertQuery The called object.
public function from(SelectInterface $query) {
$this->fromQuery = $query;
return $this;
}