规则 4.11:注释与其上面的代码应用空行隔开。

来源:互联网 发布:python开源软件 编辑:程序博客网 时间:2024/05/22 04:45

--注释1
select column1
  into i_l_variable
  from t_tablename1
 where column2 = value;

--注释2
select column1
  into i_l_variable
  from t_tablename2
 where column2 = value;

0 0