MySQL常用命令

查看数据库版本信息

1
2
3
# 查看数据库版本
mysql --version
mysql -V

登录数据库

1
2
# 登录数据库
mysql -u 用户名 -p 密码

查看、操作数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 查看现有的数据库
show databases;

# 创建叫 ziye 的数据库
create database ziye;

# 使用 ziye 数据库
use ziye;

# 删除 ziye 数据库
drop database ziye;

# 运行对应sql语句
source D:\ziye.sql

使用 select 获取相关信息

1
2
3
4
5
# 查看当前使用的数据库
select database();

# 常看数据库版本
select version();

查看表

1
2
3
4
5
# 查看当前库中的表
show tables;

# 查看名为 ziye 的数据库中的表
show tables from ziye;

查看表结构

1
2
3
4
5
# 查看 dept 表的表结构
desc dept;

# 查看 dept 表的创建语句
show create table dept;

退出 mysql

键入以下命令可退出数据库:\qquitexit

Donate
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.
  • Copyrights © 2019-2021 子夜
  • Visitors: | Views:

请我喝杯咖啡吧~

支付宝
微信