प्रति आमिट्स पोस्ट - मुझे उन "अक्षम" आइटम (2 का मूल्य) को खोजने की आवश्यकता थी। यहां कुछ अतिरिक्त फ़ील्ड्स के साथ एक वर्तमान mysql क्वेरी है जिसे मैं शूट करने में परेशानी करता था कि किन उत्पादों को वास्तव में "सक्षम" होने की आवश्यकता है
select
`eav_attribute`.`attribute_id` AS `attribute_id`,
`catalog_product_entity_int`.`entity_id` AS `entity_id`,
`catalog_product_entity_int`.`value` AS `value`,
`eav_attribute`.`attribute_code` AS `attribute_code`,
`catalog_product_entity`.`sku` AS `sku`,
`catalog_product_entity`.`created_at` AS `created_at`,
`catalog_product_entity`.`updated_at` AS `updated_at`
from
((`eav_attribute`
join `catalog_product_entity_int` on ((`eav_attribute`.`attribute_id` = `catalog_product_entity_int`.`attribute_id`)))
join `catalog_product_entity` on ((`catalog_product_entity_int`.`entity_id` = `catalog_product_entity`.`entity_id`)))
where
((`eav_attribute`.`attribute_code` = 'status') and
(`catalog_product_entity_int`.`value` = 2));