使用背景:
将update+select两条SQL合并成单条SQL,向客户端直接返回update之后的结果列,通过减小网络开销及sql解析代价提高性能
特性描述:
postgresql的语法是returning … as …
http://www.postgresql.org/docs/9.1/static/sql-update.html
oracle的语法是returning…into…
http://docs.oracle.com/cd/E11882_01/appdev.112/e25519/returninginto_clause.htm#LNPLS01354
MySQL中由于需要兼容MySQL JDBC,我们将这个特性实现为:SELECT…FROM UPDATE…
[……]