Query for messages needing contact extraction.

This commit is contained in:
Bill Thiede 2014-03-29 22:33:05 -07:00
parent 8021820311
commit 8fb345cfb1

View File

@ -0,0 +1,11 @@
SELECT
uid,
original.hash AS hash,
header_size,
total_size
FROM
original
LEFT
JOIN contact ON original.hash = contact.hash
WHERE
contact.hash IS NULL;