Delete All Customer and Products in Magento

Delete All Customer and Products in Magento It can be pain spanking task to delete all products and customers in magento when there are thousands of them. We can use the sql to delete all customer and products in magento To delete all customers SET FOREIGN_KEY_CHECKS=0; — reset customers TRUNCATE customer_address_entity; TRUNCATE customer_address_entity_datetime; TRUNCATE customer_address_entity_decimal; […]