规则 2.2:SQL语句中关键字右对齐。

来源:互联网 发布:delphi sql储存过程 编辑:程序博客网 时间:2024/06/07 02:44
--符合规范:
select column1, column2, column3
  into i_l_variable1, i_l_variable2, i_l_variable3
  from t_tablename
 where column4 = value
 order by column2;
0 0