Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Primary keys
Foreign keys
Updating and deleting with foreign keys
Summary
17. Question 1

Instruction

OK, let's get started with the quiz!

Exercise

A publishing house created a table named textbook in the following way:

CREATE TABLE textbook (
  id integer PRIMARY KEY,
  title varchar(128),
  subject varchar(64)
);

Get rid of the primary key.