Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    +1 . . . I very much like this solution, although I do prefer cross join to the use of a , in the from clause. Commented Jun 5, 2013 at 15:29
  • 1
    @GordonLinoff Heh, I just thought about this monstrosity: SELECT substring(a.acctNo from 1 for generate_series(1,length(a.acctno))) as level, sum(a.credit) FROM account a group by 1 order by 1. Somewhat "cleaner", possibly more performant, but a lot harder to understand. Commented Jun 5, 2013 at 15:55