I keep getting the following message every time I try to run this code in oracle. The code is as follows:
DROP TABLE movie;
CREATE TABLE movie (movie_id NUMB
Escape single quotes:
INSERT INTO movie (movie_id, title, description, released_by, released_on)VALUES('4', 'Godzilla', 'The legendary tale of Godzilla comes roaring back to life. This time, it''s the modern era, and Godzilla is a giant lizard who has been made fearsome through the interference of radiation.', '1', '16-SEP-2014');
Notice the it''s
instead of it's
.