CREATE TABLE actors (
   id integer primary key,
   name varchar
);

CREATE TABLE films (
   id integer primary key,
   title varchar
);