How i make a custom sql query for Woocommerce

I am not good at SQL but I believe this SQL query will do the job for you.

UPDATE wp_posts 
SET post_status="publish" 
WHERE post_type="product" AND post_status="trash";

Please remember to change WP database prefix if it is not default wp.