Multiples Empty Posts were created and cannot delete them

They are definitely some sort of post – postmeta alone doesn’t show up in the post listing screens like this. The fastest way to delete them would be to go to Screen Options to show more of the posts at once (say 500 per page so it doesn’t time out) and use bulk actions to delete 500 at a time.

However, if you’d like to do things directly in the database:

You can run

SELECT * from wp_posts WHERE post_title=""

to select all the posts that have no title. Once you have that list, you can delete the postmeta like this (replace 1,2,3 with your list of IDs, and replace wp_ prefix with your prefix):

DELETE from wp_postmeta WHERE post_id IN (1,2,3)

And you can delete the post’s taxonomy associations like this (again replace 1,2,3 with your list of IDs, and replace wp_ prefix with your prefix):

DELETE from wp_term_relationships WHERE object_id IN (1,2,3)

Then don’t forget to delete the posts themselves:

DELETE from wp_posts WHERE post_title=""