db.models.Func.template
  • References/Python/Django/API/Models/Query Expressions

template A class attribute, as a format string, that describes the SQL that is generated for this function. Defaults to

2025-01-10 15:47:30
db.models.Expression.set_source_expressions()
  • References/Python/Django/API/Models/Query Expressions

set_source_expressions(expressions) Takes a list of expressions and stores them such that get_source_expressions()

2025-01-10 15:47:30
db.models.Value
  • References/Python/Django/API/Models/Query Expressions

class Value(value, output_field=None) [source] A Value() object represents the

2025-01-10 15:47:30
db.models.Expression.relabeled_clone()
  • References/Python/Django/API/Models/Query Expressions

relabeled_clone(change_map) Returns a clone (copy) of self, with any column aliases relabeled. Column aliases are

2025-01-10 15:47:30
db.models.Aggregate
  • References/Python/Django/API/Models/Query Expressions

class Aggregate(expression, output_field=None, **extra) [source]

2025-01-10 15:47:30
db.models.Aggregate.template
  • References/Python/Django/API/Models/Query Expressions

template A class attribute, as a format string, that describes the SQL that is generated for this aggregate. Defaults to '%(function)s(

2025-01-10 15:47:30
db.models.Expression.asc()
  • References/Python/Django/API/Models/Query Expressions

asc() Returns the expression ready to be sorted in ascending order.

2025-01-10 15:47:30
db.models.F
  • References/Python/Django/API/Models/Query Expressions

class F [source] An F() object represents the value of a model field or annotated

2025-01-10 15:47:30
db.models.Expression.get_group_by_cols()
  • References/Python/Django/API/Models/Query Expressions

get_group_by_cols() Responsible for returning the list of columns references by this expression. get_group_by_cols()

2025-01-10 15:47:30
db.models.Func.function
  • References/Python/Django/API/Models/Query Expressions

function A class attribute describing the function that will be generated. Specifically, the function will be interpolated

2025-01-10 15:47:30