Answer:
Select BOOK_TITLE, BOOK_YEAR, BOOK_SUBJECT from book order by BOOK_SUBJECT asc, BOOK_YEAR desc, BOOK_TITLE asc;
BOOK_PUBLISH 2016;
Step-by-step explanation:
The books subject will be displayed in ascending order, book year will be displayed in descending orders and book title will be displayed in ascending order. The query used will display all the books entered in the system. If there is specific year in which the search is used then the query will be update with year number instead of year such as BOOK_PUBLISH, 2016; This will show the list of all books that are published in 2016.