select check_num,concat(Pat_FName,' ',Pat_LName),Book_Title,
concat(Au_FName,' ',Au_LName),check_out_date,Check_Due_Date
from checkout,Patron,Author,Book,Writes
where
Author.Au_ID=writes.Au_ID and
Writes.Book_Num=Book.Book_Num and
Book.Book_Num=checkout.book_num and
checkout.pat_ID=Patron.Pat_ID
and Pat_Type like 'Faculty'
order by check_out_date desc;
How can I resolve this? I do not know how to solve it since it just keeps showing that.