paulette
2014-03-19 01:59:28 UTC
This is what i wrote
Select a.returndate as booklended ,a.isbn_number as booklended, b. as borrower,
b.address as borrower, b.postalcode as borrower, b. phonenumber as
borrower, c.name as librarian, c.phonenumber as librarian
from booklended.a, librarian.c, borrower.b
where a. librarian id= c.librarianid
and a.librarycard = b.librarycard
and returndate < curdate()
and cost > 10.00
order by a. returndate desc;
However I am getting this error 5: invalid schema name: BOOKLENDED in statement [Select a.returndate as booklended ,a.isbn_number as booklended, b. as borrower, b.address as borrower, b.postalcode as borrower, b. phonenumber as borrower, c.name as librarian, c.phonenumber as librarian
from booklended.a]
Could I please get a guide on how I may correct this. Thank you