这篇是7788凑的:":="是赋值语句 如: l_name :='sky';..."=" 是判断是否相等. 如: if 1=1 then...":" 是变量绑定 如: if :P_NAME ='sky' then... 变量绑定 是指在sql语句的条件中使用变量而不是常量.比如shared pool里有两条sql语句,select * from tab1 where col1=1;select * from tab1 where col1=2;对…
语句和表达式 所有的块语句都应当使用花括号.包括: if for while do…while… try…catch…finally //不好的写法 if (condition) doSomethind(); //不好的写法 if (condition) doSomething(); //好的写法 if (condition) { doSomethind(); } //不好的写法 if (condition) { doSomething(); } 花括号的对齐方式 两种风格:第一种将花括号放置在…