链接数据库
mysql -uroot -p123456 --123456指的是密码
修改密码
update mysq1.user set authentication_string=password('123456') where user=' root' and Host='localhost';
刷新权限
flush privileges;
查看所有的数据库
show databases;
切换数据库
mysql>use school;
Database change
查看数据库中所有的表
show tables;
显示数据库中所有表的信息
describe student; --student是表名
创建数据库
creat database teacher; --teacher是数据库名
退出链接
exit;
数据库注释
--单行注释 /**/多行注释