美文网首页
django models 模型操作

django models 模型操作

作者: 谢耳朵_X | 来源:发表于2018-08-23 11:57 被阅读9次

    1,根据排序结果删除部分

    not_delete_list= M_log.objects.filter(user='xxx').order_by('-id')[:4].values_list("id",flat=True)

    M_log.objects.exclude(pk__in=list(not_delete_list) ).delete()

    相关文章

      网友评论

          本文标题:django models 模型操作

          本文链接:https://www.haomeiwen.com/subject/oampiftx.html