2020
10-09
10-09
django 获取字段最大值,最新的记录操作
如果是直接在数据库拉取fromdjango.db.modelsimportMaxArgument.objects.all().aggregate(Max('rating'))如果是从已经存在的model列表获取fromdjango.db.modelsimportMaxargs=Argument.objects.all()args.aggregate(Max('rating'))获取最新的一行数据max_rated_entry=YourModel.objects.latest('rating')或是提前在model中指定get_latest_byfromdjango.dbimportmodelsclassYourModel(models.Model):.....class...
继续阅读 >