Instruction
Here's the quiz!
Exercise
The NGO needs our help with another table – this one is used for keeping track of NGO members:
CREATE TABLE member ( id integer PRIMARY KEY, full_name varchar(64), joined date NOT NULL, quit date NOT NULL );
Your task is to:
- Remove the
NOT NULLconstraint from thequitcolumn. - Add a
NOT NULLconstraint to thefull_namecolumn.



