Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Deleting views
Deleting and modifying tables with views
Modifying views
Summary
12. Question 2

Instruction

Perfect! One more question for you.

Exercise

You're given the student table with another view:

CREATE TABLE student (
  id integer PRIMARY KEY,
  full_name varchar(128),
  nationality varchar(64),
  age integer
);

CREATE VIEW undergraduate_students AS
SELECT
  *
FROM student
WHERE age < 23;

Modify the definition of the undergraduate_students view so that it includes students who are under 24.