PostgreSQL表繼承

    PostgreSQL支持表繼承,這是它特有的功能。sql 1.建表     例:建立person表做爲父表,student表是繼承它的子表。code CREATE TABLE person ( id int, name varchar(20) ); CREATE TABLE student ( classId int )INHERITS(person);      執
相關文章
相關標籤/搜索