Question
Modify the below SQL scripts with simple column or table addition , rerun the script and show the results. Include code and screen shot executable
Modify the below SQL scripts with simple column or table addition, rerun the script and show the results. Include code and screen shot executable results.
CREATE TABLE movies ( movie_id INTEGER PRIMARY KEY NOT NULL, movie_title varchar(30), genre varchar(20), date_of_release varchar(12) );
INSERT INTO movies VALUES (1, 'I Saw the Devil', 'Thriller', 'Mar 4, 2011'); INSERT INTO movies VALUES (2, 'Troll Hunter', 'Dark Fantasy', 'Jan 29, 2010'); INSERT INTO movies VALUES (3, 'Fury', 'War Film', 'Oct 15, 2014'); INSERT INTO movies VALUES (4, 'Come and See', 'Anti-War Film', 'July 9, 1985'); INSERT INTO movies VALUES (5, 'Gonjiam Haunted Asylum', 'Found Footage Horror','Mar 28, 2018');
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started