Style formating of multiline query, advise

someone petshmidt at googlemail.com
Wed Mar 18 08:25:17 EDT 2009


Hi,

what is good :) style for multiline queries to database?
Is that one ok?
query = """ SELECT * FROM (
                   SELECT a.columna, a.columnb, a.iso
                      FROM all a
                      WHERE (a.name = LOWER(%s))  ) AS c
                 JOIN other as b on c.gid = b.id
                 WHERE class = 'A'
                 ORDER BY population DESC
                 LIMIT %s;"""

Regards, Pet



More information about the Python-list mailing list