List of all MySQL commands: Note that all text commands must be first on line and end with ';' ?(\?) Synonym for `help'. clear (\c) Clear command. connect(\r) Reconnect to the server. Optional arguments are db and host. delimiter (\d) Set statement delimiter. NOTE: Takes the rest of the line as new delimiter. edit(\e) Edit command with $EDITOR. ego (\G) Send command to mysql server, display result vertically. exit(\q) Exit mysql. Same as quit. go (\g) Send command to mysql server. help(\h) Display this help. nopager(\n) Disable pager, print to stdout. notee (\t) Don't write into outfile. pager (\P) Set PAGER [to_pager]. Print the query results via PAGER. print (\p) Print current command. prompt (\R) Change your mysql prompt. quit(\q) Quit mysql. rehash (\#) Rebuild completion hash. source (\.) Execute an SQL script file. Takes a file name as an argument. status (\s) Get status information from the server. system (\!) Execute a system shell command. tee (\T) Set outfile [to_outfile]. Append everything into given outfile. use (\u) Use another database. Takes database name as argument. charset(\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets. warnings (\W) Show warnings after every statement. nowarning (\w) Don't show warnings after every statement.
For server side help, type 'help contents'
mysql>
创建一个新的MySQL用户和数据库
在下面的示例中,testdb是数据库的名称,testuser是用户,password是用户的密码。
1 2 3
create database testdb; create user 'testuser'@'localhost' identified by 'password'; grant all on testdb.* to 'testuser' identified by 'password';
您可以通过在创建用户来快速创建数据库:
1 2
create database testdb; grant all on testdb.* to 'testuser' identified by 'password';