MySQL tutorials

Show or list tables in a MySQL database

Contributed by webgod on February 22, 2005 under MySQL

Once you have selected a database, you can list the tables in it by using the show command.

Comments
 

MySQL dump import -> Error 1217

Contributed by dionak on December 20, 2004 under MySQL

When using innodb tables and foreign key constraints, importing a mysqldump can sometimes generate foreign key errors.

Comments
 

Solve: Can’t connect to local MySQL server through socket /tmp/mysql.sock

Contributed by qmchenry on October 31, 2004 under MySQL

A frequent error message received when using the mysql command line utility is: Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ While this error message can be frustrating, the solution is simple.

Comments
 

Use regular expressions in MySQL SELECT statements

Contributed by qmchenry on June 30, 2004 under MySQL

A very cool and powerful capability in MySQL and other databases is the ability to incorporate regular expression syntax when selecting data. The regular expresion support in MySQL is extensive. This recipe reviews regular expression use in MySQL and lists the supported regular expression metacharacters.

Comments
 

Delete a column from an existing MySQL table

Contributed by qmchenry on March 18, 2004 under MySQL

The SQL command in this recipe removes a column and the column’s data from an existing MySQL table.

Comments
 

Modify an existing MySQL column

Contributed by qmchenry on February 8, 2004 under MySQL

The best laid plans of mice and DBAs oft go awry, so it is sometimes necessary to change the characteristics of a column after it exists and contains data. Beware whenever you make changes to your database — always make a backup first.

Comments
 

Add a column to an existing MySQL table

Contributed by qmchenry on under MySQL

MySQL tables are easy to extend with additional columns.

Comments
 

Create a MySQL table with a primary key

Contributed by qmchenry on under MySQL

A primary key uniquely identify a row in a table. One or more columns may be identified as the primary key. The values in a single column used as the primary key must be unique (like a person’s social security number). When more than one column is used, the combination of column values must be unique.

Comments