摘要:
declaretablename1 varchar2(100);str varchar2(100);cursor c_mycursor is select table_name from all_tab_comments where owner ='XYADMIN' and table_type = 'TABLE';begin open c_mycursor; loop fetch c_mycursor into tablename1; exit when c_mycursor%notfound; if tablename1 upper(tablename1) then str:='al 阅读全文
posted @ 2011-01-06 19:02
小さいです哥
阅读(429)
评论(0)
推荐(0)