Instruction
Here's the question for you!
Exercise
A rent-a-car company has the following table that stores information about their rental cars:
CREATE TABLE car ( id integer PRIMARY KEY, make varchar(64) DEFAULT 'Ford', model varchar(64), displacement decimal(3, 1) );
Your task is to:
- Add a default value of
1.8to thedisplacementcolumn. - Remove the default value for the
makecolumn.



