Mysql
 sql >> Database >  >> RDS >> Mysql

Righe di query per le quali la chiave dei metadati non esiste

Usa un esterno unisciti tramite un left join e prendi le righe che non hanno unisciti:

SELECT DISTINCT wposts.ID AS ID
FROM `doxy_posts` AS wposts
left JOIN `doxy_postmeta` AS postmeta ON wposts.ID = postmeta.post_id
WHERE postmeta.post_id is null
ORDER BY wposts.post_date DESC