MySQL tutorials
Create a basic MySQL table
contributed by qmchenry on under MySQLCreating tables in databases is an important first step to storing data. The CREATE TABLE statement is rich and sometimes confusing. This recipe describes the basics of creating a table in MySQL.
Drop or delete a table in MySQL
contributed by qmchenry on December 14, 2003 under MySQLTo remove a table from a MySQL database, and remove all of its data, use the following SQL command.
Describe the column structure of a MySQL table
contributed by qmchenry on under MySQLThe SQL command ‘describe’ allows you to view the column structure of a MySQL table. It provides a listing of the columns of a table, the type of each column, and additional information on each column.
Select a MySQL database to use
contributed by qmchenry on under MySQLA single instance of MySQL can hold many separate databases. It is important to specify the database to which subsequent commands will be issued.
Display a list of databases on a MySQL server
contributed by qmchenry on under MySQLUse the ’show databases’ command to display the list of dbs on the server.
Create a MySQL database
contributed by qmchenry on under MySQLSQL command used to create to create a db.
Determine the version of MySQL server
contributed by qmchenry on under MySQLHow do I tell what version of MySQL server that I am running?
RECENT POPULAR RECIPES
- Solve: Can't connect to local MySQL server through socket /tmp/mysql.sock
- Add a column to an existing MySQL table
- Create a MySQL user account
- Drop or delete a table in MySQL
- Create a MySQL table with a primary key
- Change the MySQL Root User Password
- Display a list of databases on a MySQL server
- Save MySQL query results into a text or CSV file
- View our Top Tens
TECH-RECIPES BLOGS
- Symfony Propel 1.4: New Project Workflow
- quickie: video on adding 3G modem to a Thinkpad Tablet
- modding: adding 3G to my Lenovo Thinkpad Tablet
- quick look: Lenovo Thinkpad Tablet (Honeycomb) and Pen (pics)
- design: my geek lair
- How to Delete Your Twitter Account
- Flash Error May Slow Down OS X Lion
- Mass Effect: Cannot See Mouse Pointer






