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'

  • 相关阅读:
    JavaScript闭包
    模块模式——方法
    产品与技术
    读书笔记
    屌丝求职记
    正则表达式regex狂记
    css狂记
    html狂记
    Android狂记忆
    关于调式
  • 原文地址:https://www.cnblogs.com/startl/p/12452515.html
Copyright © 2011-2022 走看看