Mysql 命令操作

本文介绍了MySQL中创建表、修改表结构、删除表及字段的操作,包括使用CREATETABLE、ALTERTABLE和DROPTABLE语句。同时,详细讲解了在MySQL5.7和8.0版本中创建用户、设置密码以及授权的步骤,强调了版本差异。
摘要由CSDN通过智能技术生成

一、建表

1. 直接建表

create table students(
    id int unsigned primary key auto_increment not null,
    name varchar(20) default '',
    age tinyint unsigned default 0,
    gender enum('男','女'),
    birth timestamp default CURRENT_TIMESTAMP,
    update_time timestamp default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
)

2. 将查询结果创建表

create table students as select distinct * from user;

二、修改表

1. 添加字段

alter table 表名 add 列名 类型;
alter table students add birthday datetime;

2. 修改字段–重命名

alter table 表名 change 原名 新名 类型及约束;
alter table syudents change birthday birth datetime not null;

3. 修改字段–修改字段属性

alter table 表名 modify 列名 类型及约束;
alter table students modify birth date not null;

4. 修改表名

alter table 修改前表名 rename to 修改后表名;
alter table user rename to user_update;

三、删除表

1. 删除字段

alter table 表名 drop 列名;
alter table students drop birthday;

2. 删除表

drop table 表名;
drop table students;

四、创建用户并授权

Mysql 5.7 和 Mysql 8.0 命令有区别,Mysql 8.0 创建用户并授权不能和以前一样用一条SQL语句完成,必须先创建用户设置密码,再进行授权。

Mysql 5.7

grant 权限 on 数据库.表名 to '用户名'@'登录主机' identified by '密码';

-- 增加或修改用户 user 密码为 password ,让其可以在本机上登录, 并对所有数据库有查询、插入、修改、删除的权限
grant select,insert,update,delete on *.* to 'user'@'localhost' identified by 'password';

-- 增加或修改用户 user 密码为 password ,让其可以在本机上登录, 并对所有数据库赋予所有权限
grant all privileges on *.* to 'user'@'localhost' identified by 'password';

-- 增加或修改用户 user 密码为 password ,让其可以在任意机器上登录, 并对所有数据库赋予所有权限
grant all privileges on *.* to 'user'@'%' identified by 'password';

-- 增加或修改用户 user 密码为 password ,让其可以在任意机器上登录, 并对单个数据库赋予所有权限
grant all privileges on test.* to 'user'@'%' identified by 'password';

-- 增加或修改用户 user 密码为 password ,让其可以在任意机器上登录, 并对单个数据库的某个表赋予所有权限
grant all privileges on test.t_user to 'user'@'%' identified by 'password';

-- 刷新权限
flush privileges;

Mysql 8.0

创建用户

CREATE USER 'user'@'%' IDENTIFIED BY '123456';

用户授权

grant 权限 on 数据库.表名 to '用户名'@'登录主机' with grant option;

-- 增加或修改用户 user 密码为 password ,让其可以在本机上登录, 并对所有数据库有查询、插入、修改、删除的权限
grant select,insert,update,delete on *.* to 'user'@'localhost' with grant option;

-- 增加或修改用户 user 密码为 password ,让其可以在本机上登录, 并对所有数据库赋予所有权限
grant all privileges on *.* to 'user'@'localhost' with grant option;

-- 增加或修改用户 user 密码为 password ,让其可以在任意机器上登录, 并对所有数据库赋予所有权限
grant all privileges on *.* to 'user'@'%' with grant option;

-- 增加或修改用户 user 密码为 password ,让其可以在任意机器上登录, 并对单个数据库赋予所有权限
grant all privileges on test.* to 'user'@'%' with grant option;

-- 增加或修改用户 user 密码为 password ,让其可以在任意机器上登录, 并对单个数据库的某个表赋予所有权限
grant all privileges on test.t_user to 'user'@'%' with grant option;

-- 刷新权限
flush privileges;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值