如果是dockers容器,需要先进入容器
1 | docker exec -it mysql sh |
然后登陆mysql
1 | mysql -u root -p |
显示数据库
1 | show databases; |
打开数据库
1 | use 数据库名; |
显示表
1 | show tables; |
显示表中记录
1 | select * from 表名; |
建库
1 | create database 库名; |
建表
1 | create table 表名; |
删库
1 | drop database 库名; |
删表
1 | drop table 表名; |
删除表中所有记录
1 | delete from 表名; |