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

本文共 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

你可能感兴趣的文章
JVM——参数设置、分析
查看>>
Struts 框架 之 文件上传下载案例
查看>>
【重走Android之路】【路线篇(二)】知识点归纳
查看>>
graphviz入门
查看>>
JAVA编码(37)—— Java字符串转换为MAP对象
查看>>
jquery.validate.js 一个jQuery验证格式控件
查看>>
有表格的九九乘法表
查看>>
WPF 4 DataGrid 控件(自定义样式篇)
查看>>
改善C#程序的建议1:非用ICloneable不可的理由
查看>>
PHP的错误机制总结
查看>>
SharePoint 2013 工作流设计之Designer 使用“可视化视图”
查看>>
window.location
查看>>
C#实现万年历(农历、节气、节日、星座、星宿、属相、生肖、闰年月、时辰)
查看>>
使用Flex图表组件
查看>>
Windows Phone 8初学者开发—第6部分:设置应用程序的样式
查看>>
EmEditor Professional(文本编辑) 下载地址
查看>>
格式化数字串隔3个就断
查看>>
BUAA-OO-第二单元作业-电梯初体验
查看>>
CodeIgniter 目录结构详解
查看>>
跨子域的iframe高度自适应
查看>>