Delete all drafts?

draft is not a post_type, it’s a post_status. So you should use your second block of code with that substitution:

DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_status="draft"