Skip to content

Commit

Permalink
functions-and-operators: fix wording in both functions
Browse files Browse the repository at this point in the history
  • Loading branch information
PitifulPete committed Jan 19, 2024
1 parent 0a8bd45 commit 1aecd5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions-and-operators/string-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ SELECT CustomerName, CHAR_LENGTH(CustomerName) AS LenghtOfName FROM Customers;

> **Note:**
>
> The second example operates under the assumption that there is a [database](https://www.w3schools.com/sql/trymysql.asp?filename=trysql_func_mysql_char_length2) with a row in it titled `Customers` and a column inside the row titled `CustomerName`
> The second example operates under the assumption that there is a [database](https://www.w3schools.com/sql/trymysql.asp?filename=trysql_func_mysql_char_length2) with a table titled `Customers` and a column inside the table titled `CustomerName`
### [`CHARACTER_LENGTH()`](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_character-length)

The `CHARACTER_LENGTH()` function is the same as the `CHAR_LENGTH` function. Both functions can be used synonymously because they give the same outcome.
The `CHARACTER_LENGTH()` function is the same as the `CHAR_LENGTH()` function. Both functions can be used synonymously because they provide the same outputs.

### [`CONCAT()`](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_concat)

Expand Down

0 comments on commit 1aecd5c

Please sign in to comment.