2 person_id INTEGER PRIMARY KEY,
6 iq tinyint default '0',
8 UNIQUE KEY UC_age_name (age)
11 create unique index u_name on person (name);
13 create table employee (
16 job_title varchar(255),
17 CONSTRAINT FK5302D47D93FE702E FOREIGN KEY (employee_id) REFERENCES person (person_id),
18 PRIMARY KEY (position, employee_id) USING BTREE
21 create table deleted (