oracle以字符串形式输入rowtype字段

时间:2018-02-19 23:21:05

标签: oracle oracle11g

在javascript宇宙中你有:

object.property = object['property']

使人们能够做到:

var myString = 'property';
object[myString];

如果你有oracle Universe:

row my_table%rowtype;

有没有办法执行以下操作(在存储过程中)?

column_name varchar2(128);
column_name := 'age';
row[column_name]; -- should give access to the 'age' field of the row

由于

0 个答案:

没有答案