WordPress DB migration change URL

SET @from="http://example.localhost";
SET @to="https://example.com";
UPDATE wp_options SET option_value = replace(option_value, @from, @to) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @from, @to);
UPDATE wp_posts SET post_content = replace(post_content, @from, @to);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @from, @to);