建立子表

CREATE TABLE users (username text, email text);
CREATE TABLE simple_users () INHERITS (users);
CREATE TABLE users_with_password (password text) INHERITS (users);

我們的三個表看起來像這樣:

使用者

型別
使用者名稱 文字
電子郵件 文字

simple_users

型別
使用者名稱 文字
電子郵件 文字

users_with_password

型別
使用者名稱 文字
電子郵件 文字
密碼 文字