• sknox (2/12/2014)


    ...This can be alleviated by formatting, e.g:

    WHERE

    (

    (a = b)

    OR

    (b = c)

    )

    AND

    ...

    as opposed to

    WHERE ((a = b) OR (b = c)) AND ((c = d) OR ((d = e) AND (e = f)))

    Exactly. IMHO, this goes for general query layout too.