Instruction
It's time to wrap things up! We have learned how to add, modify, and remove data from a database. In the SQL Basics course, you also learned how to SELECT data from a database.
This sequence of four operations is often referred to by the acronym CRUD:
- Create
- Retrieve
- Update
- Delete
Any application handling data will be able to do these four operations.
Remember, in SQL, you:
- Create data with the
INSERTcommand. - Retrieve data with the
SELECTcommand. - Update data with the
UPDATEcommand. - Delete data with the
DELETEcommand.
Exercise
Click to continue.



