博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql--增删改查
阅读量:5087 次
发布时间:2019-06-13

本文共 1610 字,大约阅读时间需要 5 分钟。

#1 操作文件夹(库)

    增
        create database db1 charset utf8;
    查
        show databases;
        show create database db1;
    改
        alter database db1 charset gbk;
    删
        drop database db1;
#2 操作文件(表)
    切换到文件夹下:use db1
    增
        create table t1(id int,name char(10))engine=innodb;
        create table t2(id int,name char(10))engine=innodb default charset utf8;
    查
        show tables;
        show create table t1;
        desc t1;#查看表结构
    改
        alter table t1 add age int;
        alter table t1 modify name char(12);
    删
        drop table t1;
#3 操作文件的一行行内容(记录)
    增
        insert into db1.t1 values(1,'egon1'),(2,'egon2'),(3,'egon3');
        insert into db1.t1(name) values('egon1'),('egon2'),('egon3');
    查
        select * from t1;
        select name from t1;
        select name,id from t1;
    改
        update t1 set name='SB' where id=4;
        update t1 set name='SB' where name='alex';
    删
        delete from t1 where id=4;
        #对于清空表记录有两种方式,但是推荐后者
        delete from t1;
        truncate t1; #当数据量比较大的情况下,使用这种方式,删除速度快
    #自增id
    create table t5(id int primary key auto_increment,name char(10));
    create table t4(id int not null unique,name char(10));
insert into t5(name) values
#创建用户
create user 'lin'@'localhost' identified by '123';
#insert,delele,update,select
#级别1:对所有库,下的所有表,下的所有字段
grant select on *.* to 'lin1'@'localhost' identified by '123';
#级别2:对db1库,下的所有表,下的所有字段
grant select on db1.* to 'lin2'@'localhost' identified by '123';
#级别3:对表db1.t1,下的所有字段
grant select on db1.t1 to 'lin3'@'localhost' identified by '123';
#级别4:对表db1.t1,下的id,name字段
grant select (id,name) on db1.t1 to 'lin4'@'localhost' identified by '123';
grant select (id,name),update (name) on db1.t1 to 'lin5'@'localhost' identified by '123';
#修改完权限后,要记得刷新权限
flush privileges;

转载于:https://www.cnblogs.com/DE_LIU/p/7481747.html

你可能感兴趣的文章
C# async/await异步操作:异步执行方法封装
查看>>
display:inline、block、inline-block的区别
查看>>
geotrellis使用(二十五)将Geotrellis移植到spark2.0
查看>>
字符串
查看>>
mysql复制
查看>>
Oracle函数
查看>>
Linux-02
查看>>
Shiro固定身份验证
查看>>
OCR中的倾斜矫正
查看>>
微软职位内部推荐-SDE II
查看>>
微软职位内部推荐-Sr Development Lead-OSG-IPX
查看>>
VSCode 前端必备插件
查看>>
转载:Javascript面向对象编程原理 -- 理解对象
查看>>
常用的排序算法
查看>>
python if/while/fo条件判断
查看>>
ASP.NET MVC 中将数据从View传递到控制器中的三种方法(表单数据绑定)
查看>>
数据库查询优化方法小结
查看>>
IOS-static cell 与 dynamic cell 混合使用
查看>>
Hello World 你懂的
查看>>
推荐25个帮助你提高技能的 CSS3 实战教程
查看>>