Klint Gore <[EMAIL PROTECTED]> writes: > Is having an order by in a view legal?
Not according to the SQL spec, but PG has allowed it for several releases. (The same goes for ORDER BY in a sub-select, which is actually pretty much the same thing ...) > If so, does it do 2 sorts when you sort by something else? Yup. It's something you'd only want for the topmost view in a stack, IMHO. A sort at a lower level is likely to be wasted effort. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org