postgre
一颗大卫星
大数据平台 分布式 存储 计算
展开
-
如何在sql内写循环语句
示例数据库为postgre:# 1. insert :create or replace function aa1() returns void AS $$ declare num integer; declare sname char; begin num := 0; while num <=44 loop insert into system values...原创 2018-05-11 17:30:38 · 29069 阅读 · 0 评论 -
postgresql 实现自增ID 创建seq和触发器
- 创建function CREATE OR REPLACE FUNCTION user() RETURNS trigger AS $BODY$ BEGIN NEW.ID := nextval('user$seq'); RETURN NEW; END; $BODY$ LANGUAGE 'plpgsql'; - 创建trigger CREATE TRIGGER user ...原创 2018-06-06 17:05:53 · 2085 阅读 · 1 评论