mysql5.7基本命令

1585364631
2022-01-22 / 2 评论 / 377 阅读 / 正在检测是否收录...

mysql5.7基本命令

1.数据定义语句(DDL)

0.帮助命令

多翻帮助多百度

mysql --help

1.连接mysql

mysql -u用户 -p密码 [-h地址 -P端口]

2.修改密码

set password for 用户@主机 = password('新密码');
主机:localhost、%、自定义主机

3.刷新权限

flush privileges;

4.数据库操作

  • 查看所有数据库

    show databases;
  • 创建数据库

    create database 数据库名;
    
    如果不存在才创建
    create database if not exists 数据库名;
  • 删除数据库

    drop database 数据库名;
  • 选择使用数据库

    use 数据库名;

5.数据表操作

  • 查看当前数据库的所有表

    show tables;
  • 创建数据表

    create table [if not exists] 表名(
    字段名 类型 [选项],
    字段名 类型 [选项],
    字段名 类型 [选项],
    primary key (字段名)
    );
    
    if not exists    如果不存在才执行
    primary key 设置字段为主键
    选项:
    not null    非空
    auto_increment    自增
    default    空值时默认内容
    comment    注释
  • 删除表

    drop table 表名;
  • 查看表定义

    desc 表名;
  • 查看表创建

    show create table 表名 [\G]
    
    \G:
    内容结构旋转90度,变成纵向结构
  • 修改表名

    alter table 表名 rename as 新表名
  • 增加表字段

    alter table 表名 add 字段名 字段类型
  • 删除表字段

    alter table 表名 drop 字段名
  • 修改表字段

    alter table 表名 modify 字段名 字段类型
  • 修改表字段名

    alter table 表名 change 字段名 新字段名 字段类型

6.退出

exit

2.数据操纵语句(DML)

有时间更新

0

评论 (2)

取消
  1. 头像
    mubousewva
    Windows 10 · Google Chrome

    《勃艮第公爵》剧情片高清在线免费观看:https://www.jgz518.com/xingkong/125660.html

    回复
  2. 头像
    fkyacevxgw
    Windows 10 · Google Chrome

    《笔仙诡影》恐怖片高清在线免费观看:https://www.jgz518.com/xingkong/54991.html

    回复