CREATE TABLE StarsIn ( movieTitle char(30), movieYear int(11), starName char(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');