gpt4 book ai didi

oracle - Oracle PL/SQL : How to print a table type

转载 作者:行者123 更新时间:2023-12-04 17:05:49 25 4
gpt4 key购买 nike

我正在尝试打印table type进行调试,但不知道如何。我尝试了以下两种方法,但两种方法都不起作用:

dbms_output.put_line (V_TEMP_TABTYPE(1));
dbms_output.put_line (V_TEMP_TABTYPE);

生成的错误是: PLS-00306: wrong number or types of arguments in call to

因此,如何打印 table type的内容?还是有其他显示内容的方式?

引用的 table_typetype是:
create or replace TYPE MY_TYPE IS OBJECT( MyString Varchar(20)
, counter Number(9) );
create or replace TYPE MY_TABTYPE AS TABLE OF MY_TYPE;

最佳答案

dbms_output.put_line(v_temp_tabtype(i).myString);

关于oracle - Oracle PL/SQL : How to print a table type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1200142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com