So I am writing this code and it keeps giving me the error: missing right parenthesis. Am I not finding it or something? I have other code that looks like this and worked, but for some reason, this is not wanting to go through. It says it is happening around line 2 of my code....
SQL Code:
CREATE TABLE MOVIES
(title_id NUMBER (10) NOT NULL UNIQUE,
title VARCHAR2 (60) NOT NULL,
description VARCHAR2 (400) NOT NULL,
rating VARCHAR2 (4) CHECK (rating= 'G','PG','PG13','R'),
category VARCHAR2 (20) CHECK (category= 'DRAMA','COMEDY','ACTION','CHILD','SCIFI','DOCUMENTARY'),
release_date NOT NULL),
PRIMARY KEY (title_id));