show/hide this revision's text 3 deleted 1 characters in body
  • My by far favorite is generate_series: at last a clean way to generate dummy rowsets.
  • Ability to use a correlated value in a LIMIT clause of a subquery:

    SELECT  (
            SELECT  exp_word
            FROM    mytable
            OFFSET id
            LIMIT 1
            )
    FROM    othertable
    
  • Abitlity to use multiple parameters in custom aggregates (not covered by the documentation): see the article in my blog for an example.
show/hide this revision's text 2 added 315 characters in body
  • My by far favorite is generate_series: at last a clean way to generate dummy rowsets.
  • Ability to use a correlated value in a LIMIT clause of a subquery:

    SELECT  (
            SELECT  exp_word
            FROM    mytable
            OFFSET id
            LIMIT 1
            )
    FROM    othertable
    
show/hide this revision's text 1

My by far favorite is generate_series