pgsql触发器:当向一张表中插入或更新一条记录时,同时向另一张表也插入或更新一条记录

pgsql触发器:当向一张表中插入或更新一条记录时,同时向另一张表也插入或更新一条记录,第1张

方法一:直接在表中指定字段类型为serial 类型

david=# create table tbl_xulie (

david(# id serial,

david(# name text);

NOTICE:  CREATE TABLE will create implicit sequence "tbl_xulie_id_seq" for serial column "tbl_xulieid"

CREATE TABLE

david=#

方法二:先创建序列名称,然后在新建的表中列属性指定序列就可以了,该列需int 类型

创建序列的语法:

CREATE [ TEMPORARY | TEMP ] SEQUENCE name [ INCREMENT [ BY ] increment ]

    [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]

    [ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]

    [ OWNED BY { tablecolumn | NONE } ]

修改字段的 attnum

francs=> c francs postgres

You are now connected to database "francs" as user "postgres"

francs=# update pg_attribute set attnum=4 where attrelid='francstest_6'::regclass and attname='col3';

UPDATE 1

francs=# update pg_attribute set attnum=3 where attrelid='francstest_6'::regclass and attname='col2';

UPDATE 1

francs=# update pg_attribute set attnum=2 where attrelid='francstest_6'::regclass and attname='col3';

UPDATE 1

francs=# select from francstest_6;

col1 | col3 | col2

------+------+------

1 | 2 | 3

4 | 5 | 6

(2 rows)

备注:修改系统表 pg_attribute ,更改表 francstest_6 字段的 attnum 值,结果发现只是字段名称

换了下顺序,而字段中的值却没有更改,显然通过修改系统表 pg_attributeattnum 值是行不通

的,更进一步,假设这步成功了,如果表字段上有索引,或者约束,那么还得修改相应的系统表,

显然修改数据库系统表的做法是危险的,容易给数据库带来灾难,万不得已,不建议这么做。

既然直接修改系统表字段顺序的方法行不通,那么可以通过其它间接的方法,这里想到了两种,

第一种是重建表,即新建表结构再把老表数据导进去。第二种是新建一个符合规则的视图,以

后应用程序不直接查原表,而是查视图。

以上就是关于pgsql触发器:当向一张表中插入或更新一条记录时,同时向另一张表也插入或更新一条记录全部的内容,包括:pgsql触发器:当向一张表中插入或更新一条记录时,同时向另一张表也插入或更新一条记录、pgsql的主键存储方式、pgsql怎么创建sequence等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9847465.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存