list to table
I have list of value:
(a,b,c,d,e,f,aa,bb,cc,dd,ee,ff,aaa,bbb,ccc,ddd,eee,fff...)
and i have table with kolumns:
at,bt,ct,dt,et,ft
I wants insert to table value in such a scheme:
at,bt,ct,dt,et,ft
_____________
a,b,c,d,e,f
aa,bb,cc,dd,ee,ff
aaa,bbb,ccc,ddd,eee,fff
...
how to do it by insertcursor?