8.20 ms (11.91%)
|
1 |
SELECT v0_.id AS id_0, v0_.construction_year AS construction_year_1, v0_.labeling AS labeling_2, v0_.article_number AS article_number_3, v0_.purchased_at AS purchased_at_4, v0_.storage_location AS storage_location_5, v0_.condition_rating AS condition_rating_6, v0_.approved AS approved_7, v0_.visible AS visible_8, v0_.status AS status_9, v0_.description AS description_10, v0_.brand_id AS brand_id_11, v0_.design_type_id AS design_type_id_12, v0_.bottom_embossing_id AS bottom_embossing_id_13, v0_.type_id AS type_id_14, v0_.tire_type_id AS tire_type_id_15, v0_.scale_id AS scale_id_16, v0_.series_id AS series_id_17, v0_.manufacturer_id AS manufacturer_id_18, v0_.category_id AS category_id_19 FROM vehicle v0_ LEFT JOIN design_type d1_ ON v0_.design_type_id = d1_.id LEFT JOIN scale s2_ ON v0_.scale_id = s2_.id LEFT JOIN type t3_ ON v0_.type_id = t3_.id WHERE v0_.construction_year = ? AND d1_.slug = ? AND s2_.slug = ? AND v0_.visible = ? AND v0_.status = ? AND v0_.approved = ? ORDER BY t3_.name ASC LIMIT 20
Parameters: [â–¼
"2004"
"39-cabrio"
"1-ohne-angabe"
1
"collection"
1
]
SELECT
v0_.id AS id_0,
v0_.construction_year AS construction_year_1,
v0_.labeling AS labeling_2,
v0_.article_number AS article_number_3,
v0_.purchased_at AS purchased_at_4,
v0_.storage_location AS storage_location_5,
v0_.condition_rating AS condition_rating_6,
v0_.approved AS approved_7,
v0_.visible AS visible_8,
v0_.status AS status_9,
v0_.description AS description_10,
v0_.brand_id AS brand_id_11,
v0_.design_type_id AS design_type_id_12,
v0_.bottom_embossing_id AS bottom_embossing_id_13,
v0_.type_id AS type_id_14,
v0_.tire_type_id AS tire_type_id_15,
v0_.scale_id AS scale_id_16,
v0_.series_id AS series_id_17,
v0_.manufacturer_id AS manufacturer_id_18,
v0_.category_id AS category_id_19
FROM
vehicle v0_
LEFT JOIN design_type d1_ ON v0_.design_type_id = d1_.id
LEFT JOIN scale s2_ ON v0_.scale_id = s2_.id
LEFT JOIN type t3_ ON v0_.type_id = t3_.id
WHERE
v0_.construction_year = ?
AND d1_.slug = ?
AND s2_.slug = ?
AND v0_.visible = ?
AND v0_.status = ?
AND v0_.approved = ?
ORDER BY
t3_.name ASC
LIMIT
20
SELECT v0_.id AS id_0, v0_.construction_year AS construction_year_1, v0_.labeling AS labeling_2, v0_.article_number AS article_number_3, v0_.purchased_at AS purchased_at_4, v0_.storage_location AS storage_location_5, v0_.condition_rating AS condition_rating_6, v0_.approved AS approved_7, v0_.visible AS visible_8, v0_.status AS status_9, v0_.description AS description_10, v0_.brand_id AS brand_id_11, v0_.design_type_id AS design_type_id_12, v0_.bottom_embossing_id AS bottom_embossing_id_13, v0_.type_id AS type_id_14, v0_.tire_type_id AS tire_type_id_15, v0_.scale_id AS scale_id_16, v0_.series_id AS series_id_17, v0_.manufacturer_id AS manufacturer_id_18, v0_.category_id AS category_id_19 FROM vehicle v0_ LEFT JOIN design_type d1_ ON v0_.design_type_id = d1_.id LEFT JOIN scale s2_ ON v0_.scale_id = s2_.id LEFT JOIN type t3_ ON v0_.type_id = t3_.id WHERE v0_.construction_year = '2004' AND d1_.slug = '39-cabrio' AND s2_.slug = '1-ohne-angabe' AND v0_.visible = 1 AND v0_.status = 'collection' AND v0_.approved = 1 ORDER BY t3_.name ASC LIMIT 20;
|