this is the table i created.create table ADVISEMENT( STUDENT varchar(32) not null, INSTRUCTOR varchar(32) not null, LAST_ADVISMENT_DATE date not null, STATUS char(6) not null check (STATUS in ('Met', 'Missed')));i am trying to alter the table so that i can also add a STATUS 'Unknown'. this is my alter table, but i am unable to get it to work.

alter table ADVISEMENT add (constraint IN_ADV check (STATUS in ('Met', 'Missed', 'Unknown')));