我有一系列类似的查询来从db中获取大量信息。
它们都具有下面的基本设置,只有不同的表格。
问题是,对于$version_ids
中的每个元素,它将为下面的3个特定表生成SELECT *
个查询。
SELECT * FROM prices WHERE version_id = $version_ids[n] // this only for explanation purposes
SELECT * FROM ct_insurance WHERE version_id = $version_ids[n]
SELECT * FROM costs WHERE version_id = $version_ids[n]
因此,如果$ version_ids有10个元素,它将生成30个查询,每个上表中有10个查询。
这些表的共同点是它们与表版本具有一对一的关系,例如:
class Ct_insurance
{
/**
* @ORM\Id
* @ORM\OneToOne(targetEntity="Version", inversedBy="ct_insurance")
*/
private $version;
另请注意,即使具有上述一系列查询,这些不需要的查询也只生成一次。因此,对于该系列中的每个查询,至少不会有30个查询。
这是查询的一个实例:
public function getBrandPageData1($version_ids)
{
$doctrineConfig = $this->getEntityManager()->getConfiguration();
$doctrineConfig->addCustomStringFunction('field', 'DoctrineExtensions\Query\Mysql\Field');
$qb = $this->getEntityManager()->createQueryBuilder();
$qb->select("v, field(v.id,:ids) as HIDDEN field")
->addSelect('b.brand AS brand')
->addSelect('b.imgLogoBig')
->addSelect('m.id AS model_id')
->addSelect('m.model AS model')
->addSelect('s.id AS segment_id')
->addSelect('s.segment AS segment')
->addSelect('v.id AS version_id')
->addSelect('v.version AS version')
->addSelect('v.places AS places')
->addSelect('i.imgPath AS img_path')
->addSelect('w.wrYear AS wr_year')
->from('AppBundle:Version', 'v')
->join('v.model', 'm')
->join('m.brandId', 'b')
->join('m.segmentId', 's')
->join('m.images', 'i')
->join('AppBundle:Warranty', 'w', 'WITH', 'w.brand = b.id')
->where('v.id IN (:ids)')
->orderBy('field')
->groupBy('v.id')
->setParameter('ids', $version_ids);
try {
$query = $qb->getQuery();
return $query->getResult();
} catch (\Doctrine\ORM\NoResultException $e) {
return $e;
}
}
我尝试在DQL中生成相同的查询,但在GROUP BY子句中出错。
由于
答案 0 :(得分:1)
发现它是什么,或者看起来如此。
在第一个select
上,对v
的引用会生成实体对象,然后显然会调用所有映射的实体。
所以这解决了它:
$qb->select("field(v.id,:ids) as HIDDEN field")