Linux下MySQL的基础(一)
格式:mysql> help command
eg:
mysql> help create database
Name: 'CREATE DATABASE'
Description:
Syntax: CREATE {DATABASE | SCHEMA} db_name
...
create_specification:
CHARACTER SET [=] charset_name | COLLATE [=] collation_name CREATE DATABASE creates a database with the given name. To use this statement, you need the CREATE privilege for the database. CREATE SCHEMA is a synonym for CREATE DATABASE.
URL: http://dev.mysql.com/doc/refman/5.1/en/create-database.html123456789101112131415123456789101112131415
页:
[1]