DROP TABLE StarsIn; /* Delete table if it already exists */ CREATE TABLE StarsIn ( movieTitle varchar(30), movieYear int, starName varchar(30) ); INSERT INTO StarsIn VALUES ('Star Wars', 1977, 'Carrie Fisher'); INSERT INTO StarsIn VALUES ('Star Wars', 1977, 'Mark Hamill'); INSERT INTO StarsIn VALUES ('Star Wars', 1977, 'Harrison Ford'); INSERT INTO StarsIn VALUES ('Empire Strikes Back', 1980, 'Harrison Ford'); INSERT INTO StarsIn VALUES ('The Usual Suspects', 1995, 'Kevin Spacey'); INSERT INTO StarsIn VALUES ('Terms of Endearment', 1983, 'Debra Winger'); INSERT INTO StarsIn VALUES ('Terms of Endearment', 1983, 'Jack Nicholson');