首先你需要安装好MySQL,其次对SQL语句会用。
在这章学习中,我选择新建数据库jdbc:
MySQL的命令行操作
- 配置环境变量
将bin目录配置到path中 - 命令行操作
登陆操作 | mysql -hlocalhost -uroot -proot |
---|
退出操作 | exit |
数据库操作 | 建库“:create database test; 卸载库:drop test; 显示所有数据库:show databases; 选择库:use test; |
表操作 | 建立表的语句;显示库中所有表:show tables;显示某个表的内容:describe test; |