I'm just curious. What is the correct way or should I say, the efficient way in filtering data? I'm still learning. Say you have thousands of records then you want to retrieve all active records.
Should it be done like this.
Records.objects.all().exclude(active=False)
Or
Records.objects.filter(active=True)
Do they have a difference or just the same?