You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `INSTR(str, substr)` function is used to get the index of the first occurrence of the second given argument `substr`
167
-
in the first given argument `str`.
168
-
Each argument can be either a string or a number.
169
-
This function is the same as the two-argument version of [`LOCATE(substr, str)`](/functions-and-operators/string-functions.md#locate), but with the order of the arguments reversed.
166
+
The `INSTR(str, substr)` function is used to get the index of the first occurrence of the second given argument `substr` in the first given argument `str`. Each argument can be either a string or a number. This function is the same as the two-argument version of [`LOCATE(substr, str)`](/functions-and-operators/string-functions.md#locate), but with the order of the arguments reversed.
The `LCASE(str)` function is a synonym for [`LOWER(str)`](/functions-and-operators/string-functions.md#lower),
235
-
which returns the given argument `str` with all characters changed to lowercase.
231
+
The `LCASE(str)` function is a synonym for [`LOWER(str)`](/functions-and-operators/string-functions.md#lower), which returns the given argument `str` with all characters changed to lowercase.
The `LOWER(str)` function is used to convert the given argument `str` with all characters changed to lowercase.
256
-
The argument can be either a string or a number.
251
+
The `LOWER(str)` function is used to convert the given argument `str` with all characters changed to lowercase. The argument can be either a string or a number.
257
252
258
253
- If the argument is a string, the function returns the string in lowercase.
259
254
- If the argument is a number, the function returns the number without leading zeros.
0 commit comments