I'm not sure that I fully understand the question. There is no "IS A" function in Access or JET SQL. Relationships are established by having common columns in different tables. I'm unclear about what relationship (if any) exists between the tables in your database.
I assume that tbl_Doc contains records for all documents while tbl_Book and tbl_Report contain records for books and reports, respectively. Books and reports could (should?) also be listed in tbl_Doc and have an IdDoc. A book or report would be identified as a document if listed in tbl_Doc.
If these assumptions are correct, you could add the IdDoc column to tbl_Book and tbl_Report to relate records to corresponding records in tbl_Doc. You could then use JOIN queries or correlated sub queries to identify if a "Book (or report) is a Document."
Example:
Select ISBN, Editor, tbl_book.IdDoc, Title
From tbl_Book Inner Join tbl_doc
On tbl_Book.IdDoc=tbl_Doc.IdDoc
I don't know if this is what you wanted. Let me know if it helped. If not, post some additional information for clarification. Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it and comment if you have time.
NOTE: Reference to the FAQ is part of my signature and is not directed at any individual.