Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
1. Introduction
Inserting and updating NULLs
Conditions in UPDATE and DELETE
Using values from another column
Inserting data from a query
Summary

Instruction

Welcome to Part 2 of the course! Today, we'll teach you some advanced features of INSERT, UPDATE, and DELETE operations in SQL.

You will learn how to:

  • Insert, update, and delete with NULL.
  • Use the IS NULL operator in the WHERE condition of INSERT, UPDATE, and DELETE statements.
  • Write INSERT, UPDATE, and DELETE statements with complicated conditions.
  • Use expressions with mixed columns in INSERT, UPDATE, and DELETE queries.
  • Insert data into a table using a SELECT query.

We're going to work with some data we've acquired from a university on its official examinations, which include written and oral exams. In the oral exam, points are often recorded immediately, while the written exam's result is recorded after the exam has been scored by the teacher.

Let's find out more.

Exercise

Click Next exercise to continue.