索引、账户管理

索引的目的在于提高查询效率(方便查询)

索引的原理

通过不断的缩小想要获得数据的范围来筛选出最终想要的结果

image.png
查看索引
show index from 表名;
创建索引
如果指定字段是字符串,需要指定长度,建议长度与定义字段时的长度一致
字段类型如果不是字符串,可以不填写长度部分
create index 索引名称 on 表名(字段名称(长度))
删除索引:
drop index 索引名称 on 表名;
通过pymsql模块 向表中加入十万条数据
from pymysql import connect

def main():
    # 创建Connection连接
    conn = connect(host='localhost',port=3306,database='jd',user='root',password='mysql',charset='utf8')
    # 获得Cursor对象
    cursor = conn.cursor()
    # 插入10万次数据
    for i in range(100000):
        cursor.execute("insert into test_index values('ha-%d')" % i)
    # 提交数据
    conn.commit()

if __name__ == "__main__":
    main()

检测索引方便查询的例子


开启运行时间监测:
set profiling=1;
查找第1万条数据ha-99999
select * from test_index where title='ha-99999';
查看执行的时间:
show profiles;
为表title_index的title列创建索引:
create index title_index on test_index(title(10));
执行查询语句:
select * from test_index where title='ha-99999';
再次查看执行的时间
show profiles;

索引不是越多越好,只有经常需要查,数据比较多的时候再设置索引

账户管理(授予权限)

查看所有用户
select host,user,authentication_string from user;


创建账户&授权
grant 权限列表 on 数据库 to '用户名'@'访问主机' identified by '密码';



查看用户有哪些权限
show grants for laoweng@localhost;


退出root的登录
quit
修改权限
grant 权限名称 on 数据库 to 账户@主机 with grant option;
之后一定要执行
-- 刷新权限
flush privileges;


修改密码
使用password()函数进行密码加密
update user set authentication_string=password('新密码') where user='用户名';
例:
update user set authentication_string=password('123') where user='laoweng';
注意修改完成后需要刷新权限
刷新权限:flush privileges

删除账户
语法1:使用root登录
drop user '用户名'@'主机';
例:
drop user 'laoweng'@'%';
语法2:使用root登录,删除mysql数据库的user表中数据
delete from user where user='用户名';
例:
delete from user where user='laoweng';

-- 操作结束之后需要刷新权限
flush privileges
推荐使用语法1删除用户, 如果使用语法1删除失败,采用语法2方式



  忘记 root 账户密码怎么办 
(http://blog.csdn.net/lxpbs8851/article/details/10895085)

你可能感兴趣的:(索引、账户管理)