MySQL常用操作命令以及命令查询方法(来源)
前言
在此之前,你要先注册服务,在cmd中键入下面两行(必须是以管理员权限打开cmd)
cd C:\Program Files\MySQL\Engine\bin
mysqld --install
然后你得要启动服务,方法如下:
以管理员权限打开cmd后输入:
net start mysql
停止服务的话:
net stop mysql
然后就可以打开Workbench愉快的使用MySQL啦
正文:
首先,提供三个网站:
1. For information about MySQL products and services, visit:
http://www.mysql.com/
2. For developer information, including the MySQL Reference Manual, visit:
http://dev.mysql.com/
3. To buy MySQL Enterprise support, training, or other products, visit:
https://shop.mysql.com/
重点说下第2个:
1. 里面有参考手册,需要一步一步去找,找不到的点击这个网站:
https://dev.mysql.com/doc/refman/8.0/en/
2. 打开后是最新8.0的参考版本
3. 以连接数据库为例
最后给出MySQL的操纵命令:
List of all MySQL commands:
Note that all text commands must be first on line and end with ';'
? (\?) Synonym for `help'.
clear (\c) Clear the current input statement.
connect (\r) Reconnect to the server. Optional arguments are db and host.
delimiter (\d) Set statement delimiter.
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.
notee (\t) Don't write into outfile.
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.
resetconnection(\x) Clean session context.