Magento 2 check product attribute in database using mysql query
Note : In above SQL query store_id 1 is ID of store. kindly you need to check store Id for all store-views in admin and run the above code for each store-views separately.
SELECT * FROM `catalog_product_entity_text` where store_id = 1;
SELECT * FROM `catalog_product_entity_datetime` where store_id = 1;
SELECT * FROM `catalog_product_entity_decimal` where store_id = 1;
SELECT * FROM `catalog_product_entity_int` where store_id = 1;
SELECT * FROM `catalog_product_entity_varchar` where store_id = 1;
Note : In above SQL query store_id 1 is ID of store. kindly you need to check store Id for all store-views in admin and run the above code for each store-views separately.
Comments
Post a Comment