| 1038 | | The field lookups that equate to ``LIKE`` SQL statements will automatically |
|---|
| 1039 | | escape the two special characters used in ``LIKE`` statements -- the percent |
|---|
| 1040 | | sign and the underscore. (In a ``LIKE`` statement, the percent sign signifies |
|---|
| 1041 | | a multiple-character wildcard and the underscore signifies a single-character |
|---|
| 1042 | | wildcard.) |
|---|
| | 1038 | The field lookups that equate to ``LIKE`` SQL statements (``iexact``, |
|---|
| | 1039 | ``contains``, ``icontains``, ``startswith``, ``istartswith``, ``endswith`` |
|---|
| | 1040 | and ``iendswith``) will automatically escape the two special characters used in |
|---|
| | 1041 | ``LIKE`` statements -- the percent sign and the underscore. (In a ``LIKE`` |
|---|
| | 1042 | statement, the percent sign signifies a multiple-character wildcard and the |
|---|
| | 1043 | underscore signifies a single-character wildcard.) |
|---|