How to find meta entries with their posts missing via SQL?

Of course, minutes after posting this I work it out. The following worked:

SELECT m.*
FROM wp_postmeta m
WHERE m.meta_key = 'image'
AND NOT EXISTS (SELECT *
    FROM wp_posts p
    WHERE m.meta_value = p.ID)