STEP 1 : put the required column name in the SELECTSELECT TITLE, AUTHOR_LAST, AUTHOR_FIRST, PUBLISHER_NAME
STEP 2 : find the tables where these columns comes fromIt will be : BOOK, AUTHOR, PUBLISHER (TITLE is from BOOK, AUTHOR_LAST, AUTHOR_FIRST from AUTHOR etc)this will form the FROM clauseSTEP 3 : find the relationship between the tables (BOOK, AUTHOR, PUBLISHER)BOOK link to PUBLISHER via PUBLISHER_CODEyou will notice that you are missing the link between BOOK and AUTHOR, so you need to get it from WROTE WROTE link BOOK and AUTHOR together via BOOK_CODE & AUTHOR_NUM. The "link" is basically the JOIN conditionnow put all these togetherSELECT BOOK.title, AUTHOR.AUTHOR_LAST, AUTHOR.AUTHOR_FIRST, PUBLISHER.PUBLISHER_NAMEFROM BOOK INNER JOIN PUBLISHER ON BOOK.PUBLISHER_CODE = PUBLISHER.PUBLISHER_CODE INNER JOIN WROTE ON BOOK.BOOK_CODE = WROTE.BOOK_CODE INNER JOIN AUTHOR ON WROTE.AUTHOR_NUM = AUTHOR.AUTHOR_NUM
KH[spoiler]Time is always against us[/spoiler]