http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp

  If you intend to update a column or delete a row, you cannot include a GROUP BY or HAVING clause in the SELECT statement within a DECLARE CURSOR statement. These clauses make it a read-only cursor.

  Null values are ordered as the highest value.

  A null value is not the same as zero or all blanks. A null value means unknown. Null values can be used as a condition in the WHERE and HAVING clauses.

  Comparing two columns using a normal equal comparison (COL1 = COL2) will be true if both columns contain an equal non-null value. If both columns are null, the result will be false since null is never equal to any other value, not even another null value. Using the DISTINCT predicate, null values are considered equal. So (COL1 is NOT DISTINCT from COL2) will be true if both columns contain an equal non-null value and also when both columns are the null value.

  Null values are treated as duplicate rows for DISTINCT.

  Online analytical processing (OLAP) specifications are used to return ranking numbers and row numbers for the result rows of a query. You can specify RANK, DENSE_RANK, and ROW_NUMBER.

  The USING clause is equivalent to a join condition where each column from the left table is compared to a column with the same name in the right table.

  ? the use of recursive common table expressions and recursive views.

  If you want to keep duplicates in the result of a UNION, specify UNION ALL instead of just UNION.

  Data retrieval errors/SQLCODE

  You can use a select-statement within an INSERT statement to insert zero, one, or more rows into a table from the result table of the select-statement.

最新文章

  1. 『.NET Core CLI工具文档』(十)dotnet-build
  2. 自动化运维工具之 Ansible 介绍及安装使用
  3. Linq专题之匿名对象
  4. Asp.net设计模式笔记之一:理解设计模式
  5. fiddle 中 显示serverIp
  6. X230上安装Yosemite/Win7-黑苹果之路
  7. linux 体系结构知识 博客
  8. sqlserver 字符串相关函数
  9. 关于cshtml中的js对动态编译支持的问题
  10. Lua学习----面向对象编程
  11. django settings最佳配置
  12. HTML5中的checkbox
  13. SpringBoot2.0之八 多数据源配置
  14. 基于 EntityFramework、Autofac 的 UnitOfWork 框架(一)
  15. mybatis分页查询的万能模板
  16. PSD的单位及计算方法[转]
  17. mysql 查询优化案例汇总
  18. Segment Tree Beats 区间最值问题
  19. BitAdminCore框架更新日志20180523
  20. Java面试题-Java容器

热门文章

  1. [POJ 2420] A Star not a Tree?
  2. [2015编程之美] 资格赛C
  3. Building QT projects from the command line
  4. MS-SQL索引类型
  5. 换博客啦o(* ̄▽ ̄*)ブ啦啦啦啦啦
  6. 房租管理小软件(四):对linq的使用
  7. jquery 日期控件
  8. C语言基础--结构体对齐,位域,联合体
  9. 【Hadoop代码笔记】通过JobClient对Jobtracker的调用详细了解Hadoop RPC
  10. nodejs学习:sails框架的学习