Two usersSQL Basics, day by day · Day 6
Update a single book's availability status in the library database.
Without the course
“Write SQL to set availability to false for the book 'Sunset Tales'.”
AI updates every book in the table to unavailable.
After this course
“Show me the rows that match 'Sunset Tales', then write SQL to update only those rows.”
AI lists one row and updates only that book.
Always preview the exact rows a mutation will touch before running it.