February 2025
Beginner
304 pages
8h 8m
English
Chapter 16 discussed inserting new rows of data into tables and contained our first exercises for doing something with SQL other than reading data. The chapter also briefly mentioned that the INSERT keyword is one of several used for data manipulation.
This chapter examines two other ways of manipulating data: updating and deleting. Because SQL is designed to be intuitive for English speakers, we’ll work with the keywords UPDATE and DELETE, respectively.
Updating data is a bit different from inserting data, in that we’re manipulating data at the column level instead of the row level. Recall that tables have rows, and rows have properties represented by columns. When we update data in SQL, we’re ...