Hi, I have the following tables in my SQL Database:
authors:
name varchar
id int Primary Key
publications:
id int Primary Key
title mediumtext
year int
authorsJoinTable:
authorId -> Foreign Key to the authors table
publicationID -> Foreign Key to the publications Table
sequenceId int
I am wondering if it is possible to get all the publicationIds
from the authorsJoinTable
ordered by year
descending?
Thanks in Advance,
Dean