摘要: oracle转义字符 阅读全文
posted @ 2017-08-16 19:34 AlisonGavin 阅读(565) 评论(0) 推荐(0)
摘要: 参看1 参看2 阅读全文
posted @ 2017-08-16 16:47 AlisonGavin 阅读(138) 评论(0) 推荐(0)
摘要: declare cursor s_cur is select table_name from user_tables where upper(table_name) like upper('pms%'); --定义一个游标变量c_r s_cur%rowtype ,该类型为游标s_cur中的一行数据类型 c_r s_cur%ROWTYPE; begin for r in s_cur loop... 阅读全文
posted @ 2017-08-16 16:03 AlisonGavin 阅读(206) 评论(0) 推荐(0)