Which field lookup performs a case-insensitive exact match?
- A __exact
- B __iexact
- C __contains
- D __istartswith
Answer
__iexact
The i prefix denotes case-insensitive lookups. Note that these can prevent use of a standard index depending on the database and collation.





