fork download
  1. SELECT Books.Title, Authors.FullName, Books.Year, Books.Genre, Books.Quantity
  2. FROM Books
  3. INNER JOIN Authors ON Books.AuthorID = Authors.AuthorID;
Success #stdin #stdout #stderr 0.01s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 1: no such table: Books