zoukankan      html  css  js  c++  java
  • 复习mysql语句

    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 实训篇
    MySQL 操作部分
    MySQL 数据库设计部分
    Python Excel及setuptool安装
    泛型? extents super
    js中立即执行
    js的闭包
    js作用域与作用域链
    js编译和执行顺序
    文件下载
  • 原文地址:https://www.cnblogs.com/startl/p/12452515.html
Copyright © 2011-2022 走看看