Conteúdo do Curso
Introduction to SQL
Introduction to SQL
Challenge: Select Books for the Collector's Section
As the library's trusted librarian, you've been tasked with preparing for a special book sale for collectors. Your job is to create a list of the top 50 most expensive books in the library. These books will be transferred to the exclusive "Collector's Section."
Swipe to show code editor
Write an SQL query to retrieve the title
, author
, and price
of the 50 most expensive books, sorted by price
in descending order.
Solução
Obrigado pelo seu feedback!
Challenge: Select Books for the Collector's Section
As the library's trusted librarian, you've been tasked with preparing for a special book sale for collectors. Your job is to create a list of the top 50 most expensive books in the library. These books will be transferred to the exclusive "Collector's Section."
Swipe to show code editor
Write an SQL query to retrieve the title
, author
, and price
of the 50 most expensive books, sorted by price
in descending order.
Solução
Obrigado pelo seu feedback!