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
11. Question 1

Instruction

Great, here comes the first question!

Exercise

You're given a table named student and a view:

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

CREATE VIEW foreign_students AS
SELECT
  *
FROM student
WHERE nationality != 'English';

Remove the view.