9 lines
179 B
SQL
9 lines
179 B
SQL
SELECT
|
|
p.id,
|
|
link,
|
|
clean_summary
|
|
FROM
|
|
post AS p
|
|
INNER JOIN feed AS f ON p.site = f.slug -- necessary to weed out nzb posts
|
|
WHERE search_summary IS NULL LIMIT 100;
|