Need to change all links in page content but not in post content

This is how I solved the problem in which case I wanted to change all the URLS of my target pattern to the new pattern or URL which only applied to pages and not posts. This is the sql query I ran.

update wp_posts set post_content = replace(
post_content, 'old_domain.com',
'new_domain.com') where post_type="page"