From c51da94aabf7e50fff9b940ff003d2d687acc493 Mon Sep 17 00:00:00 2001 From: Peter Oyebanji Date: Fri, 19 Jan 2024 12:21:08 +0100 Subject: [PATCH] functions-and-operators: remove link from CHAR_LENGTH() to ensure consistentcy with BIT_LENGTH() --- functions-and-operators/string-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions-and-operators/string-functions.md b/functions-and-operators/string-functions.md index 3616129815fa7..3d9184436b7a7 100644 --- a/functions-and-operators/string-functions.md +++ b/functions-and-operators/string-functions.md @@ -230,7 +230,7 @@ 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 table titled `Customers` and a column inside the table titled `CustomerName` +> The second example operates under the assumption that there is a database 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)