প্রতি অ্যামিট পোস্টে - আমাকে "অক্ষম" আইটেমগুলি খুঁজে পাওয়ার দরকার (2 টির মান)। কয়েকটি অতিরিক্ত ক্ষেত্রের সাথে এখানে একটি বর্তমান মাইএসকিএল ক্যোয়ারী রয়েছে যা আমি অঙ্কিত করতে সমস্যায় পড়েছিলাম কোন পণ্যগুলিতে আসলে "সক্ষম" হওয়া দরকার
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));