zoukankan      html  css  js  c++  java
  • mysql 建库建表建用户

    1.创建数据库

    create database school;

    2.使用数据库

    Use school;

    3.创建用户

    create user jame@localhost identified by 'jame';

    4.授权用户(注意这里是用了*哦,可以自己讲school也替换成*号)

    grant select,update,insert,create on school.* to jame@localhost identified by 'j ame';

    5.取消授权(现在明白为啥直接敲privilege 没用了吧?)

    revoke select,update,insert,create on school.* from jame@localhost;

    6.创建表

    create table students(s_name varchar(10) not null,age int(3),sex char(1),heig ht int,s_no varchar(20) not null,primary key(s_no));

    7.修改表名

    alter table students rename to student;

    8.修改列

    alter table students change s_name name varchar(20) not null;

    9.增加列

    alter table student add class varchar(20);

    10.删除列

    alter table student drop column class;

    11.删除表

    drop table student;

    12.删除用户

    drop user jame;

    13.删除数据库

    drop database school;

    查看数据库的表结构方法 desc students; 或者 describe students; 另:mysql用户进入控制台后无法切换用户,只能先退出终端,再重新连接。

  • 相关阅读:
    net8:XML的读写操作【广告控件的XML文件实例】
    挺喜欢这个网站的
    问的问题的答案~
    zookeeper集群搭建
    solrCloud简介
    e3商城_day07
    solrj实现增删查
    solr后台管理界面-数据导入
    solr后台管理界面-增删改
    s5p6818 从SD卡启动程序(制作SD启动卡)
  • 原文地址:https://www.cnblogs.com/zengda/p/4319041.html
Copyright © 2011-2022 走看看