MySQL Cheat Sheet
MySQL Cheat Sheet
aspx
Search
Search Keywords...
Ads by Google MySQL PHP MySQL Tutorial MS Access Database C++ Tutorial Perl Tutorial
Mysql Database
Improve Virtual Security & Storage. Mysql Database,
Tools & Info!
Techtarget.com/Virtualization
Use database or change current database to another database you are working with
USE database_name
Drop a database with specified name permanently. All physical file associated with the
database is no longer exists.
SHOW DATABASES
SHOW TABLES
1 of 4 7/28/2010 4:50 PM
MySQL Cheat Sheet http://www.mysqltutorial.org/mysql-cheat-sheet.aspx
ADD [COLUMN]
DROP [COLUMN]
Retrieving Data
Retrieving complete data in a database table
Retrieving specified data which is shown in the column list from a database table
2 of 4 7/28/2010 4:50 PM
MySQL Cheat Sheet http://www.mysqltutorial.org/mysql-cheat-sheet.aspx
SELECT *
FROM table_name1
INNER JOIN table_name2 ON conditions
SELECT *
FROM table_name1
LEFT JOIN table_name2 ON conditions
SELECT *
FROM table_name1
RIGHT JOIN table_name2 ON conditions
SELECT *
FROM table_name
GROUP BY column_name
3 of 4 7/28/2010 4:50 PM
MySQL Cheat Sheet http://www.mysqltutorial.org/mysql-cheat-sheet.aspx
Database/SQL Tool
For DB2, SQL Server, Derby, Mimer Informix, Oraclé
and more
www.dbvis.com
Mysql Databases
Answers to Your Storage Questions. Mysql
Databases, Info & Tools.
searchStorage.Techtarget.com
4 of 4 7/28/2010 4:50 PM