Overview
TheENDS_WITH() function determines whether the first argument ends with a specified string in the second argument or not.
first_argument: the specified argument, which will be the search reference. It can be a string or a column name.second_argument: the specified argument, which will have the search keywords.
STRING, and the return type is BOOL, shown as true or false.
Special case:
- It will return
NULLfor theNULLrecord. - It will return
true(including theNULLrecord) if thesecond_argumentis not specified.
Examples
#Case 1: ENDS_WITH() function using column
Let’s say we have a table named courses:
false.
Case 2: ENDS_WITH() function with no specified argument
Here we have the **patients_data **table with a NULL value in the allergies column.
ENDS_WITH function but with no specified second_argument.
ENDS_WITH will return true to all records (even the null one).