CURSOR postgresql 中的 ROWTYPE
Posted
技术标签:
【中文标题】CURSOR postgresql 中的 ROWTYPE【英文标题】:ROWTYPE in CURSOR postgresql 【发布时间】:2016-10-04 14:58:23 【问题描述】:我想知道是否可以在 postgresql (pl/pgsql) 中为游标获取“Rowtype”。 ..
我的光标从多个表中选择,我不知道如何获取行类型。
c_Data CURSOR FOR
select
dst_description
, cnt_number
, prd_name
, grt_code
, res_currency
, res_date
, prm_installmentdate
from tbl_xxx, tbl_yyy, tbl_aaa
where cnt_id = res_xxx
and prd_id = cnt_yyy
and dst_id = prd_aaa
and grt_id = res_xxx
and prm_id = res_aaa;
l_Data c_Data%rowtype;
请帮忙
【问题讨论】:
你认为你为什么需要它? 你不需要行类型。请改用 RECORD 类型。 【参考方案1】:更像这样。
declare
l_data record;
begin
select
INTO l_data --<<
dst_description
, cnt_number
, prd_name
, grt_code
, res_currency
, res_date
, prm_installmentdate
from tbl_xxx, tbl_yyy, tbl_aaa
where cnt_id = res_xxx
and prd_id = cnt_yyy
and dst_id = prd_aaa
and grt_id = res_xxx
and prm_id = res_aaa;
l_data 将是您需要的行类型。
【讨论】:
以上是关于CURSOR postgresql 中的 ROWTYPE的主要内容,如果未能解决你的问题,请参考以下文章
使用 JDBC 时,Oracle 的 REF CURSOR 在 Postgresql 中的等价物是啥?
Python PostgreSQL 语句问题 psycopg2 cursor.execute(Table Union)
如何使用libpqxx中的pqxx :: stateless_cursor类?
我用的python+django,在尝试连接mysql数据库时候,输入cursor=connection.cursor()测试总是不能通过