Converts text to lower case. :samp:`Lower("{FIELD_NAME}")`
| 38 | |
| 39 | |
| 40 | class Lower(Function): |
| 41 | """ |
| 42 | Converts text to lower case. |
| 43 | |
| 44 | :samp:`Lower("{FIELD_NAME}")` |
| 45 | """ |
| 46 | |
| 47 | database_func = functions.Lower |
| 48 | |
| 49 | |
| 50 | class Upper(Function): |
no outgoing calls
searching dependent graphs…