Ηere are three meta_keys in postmeta table.
[ _sale_price, _regular_price, _price ]
First array contains value and second array contains WHERE condition. You can add more conditions.
You can update values using the following code.
//update _price$wpdb->update( $wpdb->postmeta, array( 'meta_value' => $default_product_price ), array( 'meta_key' => '_price' ));//update _regular_price$wpdb->update( $wpdb->postmeta, array( 'meta_value' => $default_product_price ), array( 'meta_key' => '_regular_price' ));//update _price$wpdb->update( $wpdb->postmeta, array( 'meta_value' => $default_sale_price ), array( 'meta_key' => '_sale_price' ));