Я
Size: a a a
Я
QH
⋑
⋑
QH
⋑
C
SELECT * FROM Documents
WHERE
Documents.name IS NULL AND
Documents.number IS NULL AND
Documents.date_start IS NULL AND
Documents.date_end IS NULL AND
Documents.description IS NULL AND
Documents.id NOT IN
(
SELECT d.id FROM Documents as d
INNER JOIN Photos as p ON p.doc_id = d.id
);
C
C
Documents.id NOT IN
(
DH
⋑
⋑
DH
⋑
⋑
QH
QH
SELECT * FROM Documents
WHERE
Documents.name IS NULL AND
Documents.number IS NULL AND
Documents.date_start IS NULL AND
Documents.date_end IS NULL AND
Documents.description IS NULL AND
Documents.id NOT IN
(
SELECT d.id FROM Documents as d
INNER JOIN Photos as p ON p.doc_id = d.id
);
C
⋑
⋑