The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
CREATE TABLE actors (
   id integer primary key,
   name varchar
);

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