How we are remove all products URL rewrites -
👉To remove all URL rewrites related to the products you can use that run SQL Query :
DELETE FROM url_rewrite WHERE entity_type='product';
👉 If you want just to remove the All URL rewrites that were automatically generated you can use this one SQL Query :
DELETE FROM url_rewrite WHERE entity_type='product' AND is_autogenerated='1';