Final answer:
The correct SQL statement to display book titles with multiple copies requested in a single order is c) SELECT title FROM BOOKS INNER JOIN ORDERITEMS ON BOOKS.book_id = ORDERITEMS.book_id WHERE copies_requested > 1.
Step-by-step explanation:
The statement that will display the title of all books that have had multiple copies requested in a single order is:
c) SELECT title FROM BOOKS INNER JOIN ORDERITEMS ON BOOKS.book_id = ORDERITEMS.book_id WHERE copies_requested > 1
This SQL query uses the INNER JOIN clause to combine rows from the BOOKS and ORDERITEMS tables where the book_id matches. The WHERE clause is then used to filter the result set to only include books where the number of copies requested on a single order is greater than one. The query returns the desired titles reflecting multiple copies requested.