PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Postgre SQL ignora la condizione di filtro se il valore è null

Puoi mantenere gli argomenti come dict e inviare al metodo filter() solo quelli che non sono uguali a None:

arguments = {"A_name": A, "B_name": B, "C_name": C}
arguments_without_null = {k: v for k, v in arguments.items() if v is not None}
queryset = User.objects.values().filter(**arguments_without_null)