私は以下のようなモデルを持っています
Class Product(models.Model):
name = models.CharField(max_length=255)
price = models.IntegerField()
データベースにレコードがあると4 product
します。4 つの製品レコードすべてに があるかどうかを確認する方法はありますsame price
か?
thousands
データベースに製品レコードが存在する可能性があり、パフォーマンスの問題になる可能性があるため、すべての製品をループしたくありません。
だから私はこれを行うために組み込みのdjangoデータベースORMを使用するようなものを探しています
check_whether_all_the_product_records_has_same_price_value = some django ORM operation......
if check_whether_all_the_product_records_has_same_price_value:
# If all the Product table records(four) has the same price value
# return the starting record
return check_whether_product_has_same_price_value(0)
では、どうすればこれを行うことができるか教えてください。