Question: How do you alter a column to forbid null values?
A
B
C
D
E
alter table foo alter bar set not null;
B
alter table foo alter bar avoid null;
C
alter table foo alter bar forbid null;
D
alter table foo alter bar add not null;
E
None of these above
Note: Not available