oracle for 循环插入

前端之家收集整理的这篇文章主要介绍了oracle for 循环插入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
declare cursor my_cursors is select distinct c_fun_code from t_s_fun_rights where rownum < 3680; begin for my_cursor in my_cursors loop insert into t_s_fun_rights values(my_cursor.c_fun_code,'SealRelaInfo',''); end loop; end; 原文链接:https://www.f2er.com/oracle/207365.html

猜你在找的Oracle相关文章