PostgreSQL将新插入的行存储到变量中以供以后参考(SQL)

时间:2019-07-17 10:26:06

标签: sql postgresql object-relational-model composite-types

在Cubrid Database Server中,可以将新插入的记录的“对象实例”引用存储到本地变量中,以便稍后在另一条语句中进行引用,例如:

create class atype (code integer, description varchar);
insert into atype (code,description) values (1,'Valid') into :valid_value;

create class tvalue (ttype atype, dvalue varchar);
insert into tvalue (ttype,dvalue) values (:valid_value, '1' ) into :a1 ;

在同一会话中的PostgreSQL中是否可能?如果是这样,可用变量的数量是否有限制?

0 个答案:

没有答案