create table AAA.BBB.HOGE (
    no integer identity not null,
    name varchar not null,
    constraint HOGE_PK primary key(no)
);
