Database Lab Paper
Database Lab Paper
6. Retrieve all books, ordered by Genre in ascending order and Price in descending
SELECT * FROM Books
7. Group books by Genre and count the number of books in each genre:
8. Retrieve all books where the Title contains the word 'Data':
12. Retrieve all books, grouped by Genre, having more than 1 book in the genre:
14. Retrieve the Title and AuthorName of all books using a join: