Select multiple wp_postmeta keys with single select

If you use get_post_meta() with just the first parameter ( post ID ) you’ll get an array of all the post meta for the passed ID. You’ll get more than you expect but you can then use any number of ways to get the data that you want out.

$post_meta = get_post_meta( 207717 )