v_col varchar2(100);
cursor curTemp is
select * from nk_excel_data;
begin
for c in curTemp loop
for d in 1 .. columnsCount loop v_col := 'c.col' || d || ','; --这里怎么解决呢,我是动态构造的col1,col2,col3...,有什么办法吗,这些列在数据库中都是有的,在这里我要这样取,有什么办法吗