Data type is the characteristic of columns and variables that defines what types of data values they can store. The characteristic indicating whether a data item represents a number, date, character string, and etc.
Data type descriptions use the following conventions:
M indicates the maximum display width for integer types and the total amount of digits that can be stored
M is also the maximum length for string types
M’s maximum allowable value depends on the data type you’ll use
D applies to floating-point and fixed-point types and indicates the number of digits following the decimal point. The maximum possible value is 30, but should be no greater than M–2
Square brackets ('[' and ']') indicate optional parts of type definitions.
The guidelines for this success criterion are listed bellow:
There is many more data types that are not mentioned in this research summary but I hope it gives you a taste of what is being accomplished with MySQL and its relationship to databases. For more information on data types and MySQL check out Hscripts.com's tutorial on MySQL.