I’m trying to change visibility of all SIMPLE-only products via SQL.
Here is how I select all values of visibility attribute:
SELECT * FROM `catalog_product_entity_int` WHERE attribute_id = 102
catalog_product_entity_int table has entity_id column which is product entity ID, and value that should be changed to 1 for all simple products.
Here is how I select all simple products:
SELECT * FROM `catalog_product_entity` WHERE `type_id`= 'simple'
What I can’t do, is write query that would update value column of catalog_product_entity_int for all simple products.
as i got ur question, this simple code will be work for u.
i assume that relationship between these two tables are -entity_id