Oracle11g中如何模拟i*sqlplus 的效果
开始
在oracle11g 中,已经没有 i*sqlplus了, 但是仍然有 Oracle SQL Developer。
可以这样作:在sql worksheet 中,按如下的写法来做:
set serveroutput on; variable g_month number; set verify off; begin :g_month:=1; end; / print g_month
script output 窗口中得到结果:
anonymous block completed G_MONTH - 1
结束