Small. Fast. Reliable.
Choose any three.
*** 13,18 ****
--- 13,22 ----
  
        This is Sybase ASE syntax. Related to "Oracle's join syntax" mentioned below
  
+ *: 2005.12.27 : Oracle's Named Parameter output syntax.  In Oracle, one can declare parameters and select into them as such
+ 
+       Select A1, A2, A3 into (:p1, :p2, :p3) from TableA
+ 
  *: 2005.10.06 : This appears to be unsupported: updating multiple columns with subselect
  
        update T1 set (theUpdatedValue, theOtherValue) =
***************
*** 101,112 ****
  *: 2003.07.28 : Stored Procedures
  
  *: 2003.07.28 : Rollup and Cube -> UnsupportedSqlRollupAndCube
- 
- *: Oracle's Named Parameter output syntax.  In Oracle, one can declare
- parameters and select into them
- as such
- 
- _:Select A1, A2, A3 into (:p1, :p2, :p3) from TableA
  
  *: name columns in views (i.e. CREATE VIEW (foo, bar) AS SELECT qux, quo FROM
  baz;)
--- 105,110 ----