Data type in MySQL Part - 2
Hello and welcome everyone. In the previous article, we have learned about Numeric Data type. Now in this article, we will learn String Data type. Let’s go. MongoDB with .Net Core course link => https://www.udemy.com/mongodb-with-net-core-sagar-jaybhay/ C# basic course click on: https://www.udemy.com/learn-csharp-with-sagar-jaybhay/ Web API 2- .Net Core In depth In 5 Hours click on: https://www.udemy.com/web-api-2-net-core-in-depth-in-5-hrs-with-sagar-jaybhay/ String Data type CHAR () VARCHAR () BINARY () VARBINARY () BLOB ( Binary Large Objects ) () TEXT () TINYBLOB () TINYTEXT () MEDIUMBLOB () MEDIUMTEXT () LONGBLOB () LONGTEXT () ENUM () SET () Now let see in details one by one: CHAR () CHAR data type is a fixed length string (in this contain is letters, numbers and special characters), where size is the number of characters to store in the database. A char data type length is from 0 to 255. For example, is CHAR (10). ...