10 lines
243 B
SQL
10 lines
243 B
SQL
SELECT
|
|
p.id,
|
|
link,
|
|
clean_summary
|
|
FROM
|
|
-- Remoe tablesample when db sufficiently indexed
|
|
post AS p TABLESAMPLE SYSTEM (.1)
|
|
INNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts
|
|
WHERE search_summary IS NULL;
|