Django Field Lookups - gt (greater than)

Definition and Usage

The gt lookup is used to get records that are larger than a specified value.

For a greater than or equal to search, use the gte lookup.

SQL Equivalent

The SQL equivalent to the example above will be:

WHERE id > 3;

Syntax

All Field lookup keywords must be specified with the fieldname, followed by two(!) underscore characters __ and the keyword:

fieldname__gt=value