I needed to delete all custom titles and descriptions fast from Yoast plugin for WordPress.
To do it, I used these SQL queries in MySQL
DELETE FROM wp_postmeta where meta_key = '_yoast_wpseo_title' DELETE FROM wp_postmeta where meta_key = '_yoast_wpseo_metadesc'
Make sure you back up your DB before doing it