Final answer:
The query with an equality join is A, which joins the books and bookauthor tables on the isbn attribute using an equality operator.
Step-by-step explanation:
The query that contains an equality join is A. SELECT title, authorid FROM books, bookauthor WHERE books.isbn = bookauthor.isbn AND retail>20. An equality join is characterized by the use of an equality operator to match rows from two tables based on a common attribute. In this case, books and bookauthor are being joined on the common attribute isbn. The other queries do not show direct evidence of an equality operator being used to join tables based on a common attribute.