This is my code for the table Frame

CREATE TABLE Frame(
FrNo NUMBER CONSTRAINT pkFrameNo PRIMARY KEY,
event VARCHAR NOT NULL,
FrMatch VARCHAR NOT NULL,
Duration NUMBER NOT NULL,
Score1 NUMBER(147) NOT NULL CONSTRAINT FrCheckScore CHECK ((Score1 > 0) & (Score1 < 300)),
Score2 NUMBER(147) NOT NULL CONSTRAINT FrCheckScore CHECK ((Score2 > 0) & (Score2 < 300)),
Report char(1000),
);


says it missing left parenthisis, cant see why
but the Report field also needs to have the words OK or INCIDENT. How would i code this?

Thanks p