Skip to main content

Posts

Showing posts with the label is mysql case sensitivity

MySQL Identifiers

            The are five kinds of identifiers that need to be considered in MySQL: databases, tables, columns, indexes  and aliases.  Databases, as stated are the containers for the tables and other associated database components.  Tables hold the data that is used to produce information.  Columns are the individual entities of the tables that  contain the smallest portion of the data.  Indexes in databases refer to the data structures that improve the  speed of operations in a table. Aliases are temporary names assigned to database components. The identifiers  that can be assigned to each component have their limitations: •  Size -               The following table describes the max length each database identifier can be assigned: Identifier Maximum Length Database 64 Bytes Table 64 Bytes Column 64 Bytes Index 64 Bytes Alias 255 Bytes       The length of th