How is exact
lookup diffferent from equal
lookup in Django
I have two queries
Blog.objects.get(title=title)
Blog.objects.get(title__exact=title)
What is the difference between these two?
How is exact
lookup diffferent from equal
lookup in Django
I have two queries
Blog.objects.get(title=title)
Blog.objects.get(title__exact=title)
What is the difference between these two?