Class WhereNode

An SQL WHERE clause.

Declaration

class WhereNode(tree.Node)
source link

Documentation

The class is tied to the Query class that created it (in order to create
the correct SQL).

A child is usually an expression producing boolean values. Most likely the
expression is a Lookup instance.

However, a child could also be any class with as_sql() and either
relabeled_clone() method or relabel_aliases() and clone() methods and
contains_aggregate attribute.

Methods

Inherited methods

Reexports