MySQL

Posts related to MySQL

What does int(11) means in MySQL?

A very common misconception about what int(11) means in MySQL is that the column can store maximum integer value with 11 digits in length. However, this is not true. int(11) does not determines the maximum value that the column can store in it. 11 is the display width of the integer column, unlike the characters […]

What does int(11) means in MySQL? Read More »

How to get size of BLOB in MySQL

How to get size of BLOB in MySQL Read More »

MySQL ordering results by specific field values

MySQL ordering results by specific field values Read More »

Sample MySQL table

For my MySQL posts here is a sample MySQL table that I would be using for my examples. I would refer my posts back to this for table structure and sample data. Table structure: +———+————-+——+—–+———+——-+ | Field | Type | Null | Key | Default | Extra | +———+————-+——+—–+———+——-+ | name | varchar(20) | YES

Sample MySQL table Read More »

How to Find and Replace Data in MySQL

How to Find and Replace Data in MySQL Read More »