1、mysql -u root -p123456 --链接数据库
2、update mysql.user set authentication_string=password('123456') where user='root' and Host='localhost' --修改用户密码
3、flush privilege --刷新权限
4、show databases;--查看所有数据库
5、mysql>use School --切换数据库
Database changed
6、show tables;--查看数据库所有的表
7、describe student;显示数据库中所有表的信息
8、creat database westos;--创建数据库
9、-- 单行注释
10、/**
ID
AGE
**/多行注释