摘要:
1、B-tree索引 create index idx_contacts_name on contacts(name); 2、数组索引 create index idx_contacts_phone on contacts using gin(phone); 注:phone在contacts表中是一 阅读全文
摘要:
一、创建视图 create or replace view vw_users as select * from users; 二、通过定义规则来更新视图 create rule vw_users_upd as on update to vw_users do instead update users 阅读全文