Google News
logo
Django - Quiz(MCQ)
In Django how would you retrieve all the 'User' records from a given database?
A)
User.object.all()
B)
User.all_records()
C)
Users.objects.all()
D)
User.objects.all()

Correct Answer :   User.objects.all()

Advertisement