首页 > 数据库技术 > 详细

复习mysql语句

时间:2020-03-10 00:05:48      阅读:62      评论:0      收藏:0      [点我收藏+]

1.创建用户
create user ‘lai‘@‘localhost‘ identified by ‘123‘;
2.修改用户
rename user ‘lai‘@‘localhost‘ to ‘tong‘@‘localhost‘;
3.删除用户
drop user ‘tong‘@‘localhost‘;
4.查看权限
show grants for ‘tong‘@‘localhost‘;
5.授予权限
grant select on db1.student to ‘tong‘@‘localhost‘;
6.取消权限
revoke select on db1.student from ‘tong‘@‘localhost‘;
7.创建表与主键和 外键
create table color(
color_id int not null auto_increment primary key,
color_style varchar(255) not null);
create table fruit(
fruit_id int not null auto_increment,
f_color varchar(255) not null,
co_id int not null ,
primary key(fruit_id,co_id),
constraint fk_co_id foreign key (co_id) references color(color_id)
);
8.修改navicate登录名的密码:
alter user ‘root‘@‘localhost‘ identified with mysql_native_password by ‘123‘

 

复习mysql语句

原文:https://www.cnblogs.com/startl/p/12452515.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!