摘要:
一般操作 https://docs.djangoproject.com/en/3.0/ref/models/querysets/ 官网 文档 https://www.cnblogs.com/study-learning/p/9969486.html 必知必会13条 <1> all(): 查询所有结果 阅读全文
摘要:
result= Booking.objects.filter(xxxx,xxxx,xxxx) count :获取提取的数据的个数。如果想要知道总共有多少条数据,那么建议使用 count ,而不是使用 len(articles) 这种。因为 count 在底层是使用 select count(*) 来 阅读全文