How to change a WordPress Post to a Page

When building this site I created some posts that I later wanted to be pages as I did not want the published date to be visible. Using your preferred SQL tool execute the following:

UPDATE wp_posts SET post_type = ‘page’ WHERE ID = ‘<post_number>’