The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
BEGIN;

CREATE TABLE foo (
    id serial primary key,
    name text not null default '',
    rank text not null default '',
    sn   text not null default ''
);

COMMIT;