我正在尝试查询已完成转换页面的所有图书。 当Text列不为空时,页面完成(转换)。
**Book**
Id
Name
**BookPage**
Id
BookId
PageNumber
Text
提前谢谢大家。
答案 0 :(得分:3)
这是对SQL的直接翻译:
select * from Book as b
where not exists
( select * from BookPage as bp
where b.Id = bp.BookId
and bp.Text is null
)