Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Correct Book's Data | Updating & Deleting Data
Introduction to SQL

bookChallenge: Correct Book's Data

The library staff discovered an error in the database for the books table. A recently added book has incorrect information, and you need to update it.

Specifically:

The book with book_id = 5 currently has the title 'The Greatest Gatsby'. However, the title was entered incorrectly, and it should be updated to 'The Great Gatsby'.

Additionally, this book's is_available status is incorrect and should be set to FALSE because it has been lent out.

Task

Swipe to start coding

Your task is to write an UPDATE statement to correct this information in the books table.

The syntax of the UPDATE statement is:

UPDATE table_name
SET column1 = value1,
        column2 = value2,
        ...
WHERE condition;

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 5. ChapterΒ 2
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

close

Awesome!

Completion rate improved to 1.72

bookChallenge: Correct Book's Data

Swipe to show menu

The library staff discovered an error in the database for the books table. A recently added book has incorrect information, and you need to update it.

Specifically:

The book with book_id = 5 currently has the title 'The Greatest Gatsby'. However, the title was entered incorrectly, and it should be updated to 'The Great Gatsby'.

Additionally, this book's is_available status is incorrect and should be set to FALSE because it has been lent out.

Task

Swipe to start coding

Your task is to write an UPDATE statement to correct this information in the books table.

The syntax of the UPDATE statement is:

UPDATE table_name
SET column1 = value1,
        column2 = value2,
        ...
WHERE condition;

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

close

Awesome!

Completion rate improved to 1.72
SectionΒ 5. ChapterΒ 2
single

single

some-alt