翼度科技»论坛 编程开发 python 查看内容

day25-索引和函数及存储过程

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
1. 索引

在数据库中索引最核心的作用是:加速查找。  例如:在含有300w条数据的表中查询,无索引需要700秒,而利用索引可能仅需1秒。
  1. mysql> select * from big where password="81f98021-6927-433a-8f0d-0f5ac274f96e";
  2. +----+---------+---------------+--------------------------------------+------+
  3. | id | name    | email         | password                             | age  |
  4. +----+---------+---------------+--------------------------------------+------+
  5. | 11 | wu-13-1 | w-13-1@qq.com | 81f98021-6927-433a-8f0d-0f5ac274f96e |    9 |
  6. +----+---------+---------------+--------------------------------------+------+
  7. 1 row in set (0.70 sec)
  8. mysql> select * from big where id=11;
  9. +----+---------+---------------+--------------------------------------+------+
  10. | id | name    | email         | password                             | age  |
  11. +----+---------+---------------+--------------------------------------+------+
  12. | 11 | wu-13-1 | w-13-1@qq.com | 81f98021-6927-433a-8f0d-0f5ac274f96e |    9 |
  13. +----+---------+---------------+--------------------------------------+------+
  14. 1 row in set (0.00 sec)
  15. mysql> select * from big where name="wu-13-1";
  16. +----+---------+---------------+--------------------------------------+------+
  17. | id | name    | email         | password                             | age  |
  18. +----+---------+---------------+--------------------------------------+------+
  19. | 11 | wu-13-1 | w-13-1@qq.com | 81f98021-6927-433a-8f0d-0f5ac274f96e |    9 |
  20. +----+---------+---------------+--------------------------------------+------+
  21. 1 row in set (0.00 sec)
复制代码
在开发过程中会为哪些 经常会被搜索的列 创建索引,以提高程序的响应速度。例如:查询手机号、邮箱、用户名等。
1.1 索引原理

为什么加上索引之后速度能有这么大的提升呢? 因为索引的底层是基于B+Tree的数据结构存储的。



很明显,如果有了索引结构的查询效率比表中逐行查询的速度要快很多且数据量越大越明显。
B+Tree结构连接:https://www.cs.usfca.edu/~galles/visualization/BPlusTree.html
数据库的索引是基于上述B+Tree的数据结构实现,但在创建数据库表时,如果指定不同的引擎,底层使用的B+Tree结构的原理有些不同。

  • myisam引擎,非聚簇索引(数据 和 索引结构 分开存储)
  • innodb引擎,聚簇索引(数据 和 主键索引结构存储在一起)
1.1.1 非聚簇索引(mysiam引擎)
  1. create table 表名(
  2.     id int not null auto_increment primary key,
  3.     name varchar(32) not null,
  4.     age int
  5. )engine=myisam default charset=utf8;
复制代码



1.1.2 聚簇索引(innodb引擎)
  1. create table 表名(
  2.     id int not null auto_increment primary key,
  3.     name varchar(32) not null,
  4.     age int
  5. )engine=innodb default charset=utf8;
复制代码




在MySQL文件存储中的体现:
  1. root@192 userdb # pwd
  2. /usr/local/mysql/data/userdb
  3. root@192 userdb # ls -l
  4. total 1412928
  5. -rw-r-----  1 _mysql  _mysql       8684 May 15 22:51 big.frm,表结构。
  6. -rw-r-----  1 _mysql  _mysql  717225984 May 15 22:51 big.ibd,数据和索引结构。
  7. -rw-r-----  1 _mysql  _mysql       8588 May 16 11:38 goods.frm
  8. -rw-r-----  1 _mysql  _mysql      98304 May 16 11:39 goods.ibd
  9. -rw-r-----  1 _mysql  _mysql       8586 May 26 10:57 t2.frm,表结构
  10. -rw-r-----  1 _mysql  _mysql          0 May 26 10:57 t2.MYD,数据
  11. -rw-r-----  1 _mysql  _mysql       1024 May 26 10:57 t2.MYI,索引结构
复制代码
上述 聚簇索引 和 非聚簇索引 底层均利用了B+Tree结构结构,只不过内部数据存储有些不同罢了。
在企业开发中一般都会使用 innodb 引擎(内部支持事务、行级锁、外键等特点),在MySQL5.5版本之后默认引擎也是innodb。
  1. mysql> show create table users \G;
  2. *************************** 1. row ***************************
  3.        Table: users
  4. Create Table: CREATE TABLE `users` (
  5.   `id` int(11) NOT NULL AUTO_INCREMENT,
  6.   `name` varchar(32) DEFAULT NULL,
  7.   `password` varchar(64) DEFAULT NULL,
  8.   `ctime` datetime DEFAULT NULL,
  9.   `age` int(11) DEFAULT '5',
  10.   PRIMARY KEY (`id`)
  11. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8
  12. 1 row in set (0.00 sec)
  13. ERROR:
  14. No query specified
  15. mysql> show index from users \G;
  16. *************************** 1. row ***************************
  17.         Table: users
  18.    Non_unique: 0
  19.      Key_name: PRIMARY
  20. Seq_in_index: 1
  21.   Column_name: id
  22.     Collation: A
  23.   Cardinality: 3
  24.      Sub_part: NULL
  25.        Packed: NULL
  26.          Null:
  27.    Index_type: BTREE   -- 虽然显示BTree,但底层数据结构基于B+Tree。
  28.       Comment:
  29. Index_comment:
  30. 1 row in set (0.00 sec)
  31. ERROR:
  32. No query specified
  33. mysql>
复制代码
innodb引擎,一般创建的索引:聚簇索引。
1.2 常见索引

在innodb引擎下,索引底层都是基于B+Tree数据结构存储(聚簇索引)。

在开发过程中常见的索引类型有:

  • 主键索引:加速查找、不能为空、不能重复。 + 联合主键索引
  • 唯一索引:加速查找、不能重复。  + 联合唯一索引
  • 普通索引:加速查找。 + 联合索引
1.2.1 主键和联合主键索引
  1. create table 表名(
  2.     id int not null auto_increment primary key,   -- 主键
  3.     name varchar(32) not null
  4. );
  5. create table 表名(
  6.     id int not null auto_increment,
  7.     name varchar(32) not null,
  8.     primary key(id)
  9. );
  10. create table 表名(
  11.     id int not null auto_increment,
  12.     name varchar(32) not null,
  13.     primary key(列1,列2)          -- 如果有多列,称为联合主键(不常用且myisam引擎支持)
  14. );
复制代码
  1. alter table 表名 add primary key(列名);
复制代码
  1. alter table 表名 drop primary key;
复制代码
注意:删除索引时可能会报错,自增列必须定义为键。
  1. ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
  2. alter table 表 change id id int not null;
复制代码
  1. create table t7(
  2.     id int not null,
  3.     name varchar(32) not null,
  4.     primary key(id)
  5. );
  6. alter table t6 drop primary key;
复制代码
1.2.2 唯一和联合唯一索引
  1. create table 表名(
  2.     id int not null auto_increment primary key,
  3.     name varchar(32) not null,
  4.     email varchar(64) not null,
  5.     unique ix_name (name),
  6.     unique ix_email (email),
  7. );
  8. create table 表名(
  9.     id int not null auto_increment,
  10.     name varchar(32) not null,
  11.     unique (列1,列2)               -- 如果有多列,称为联合唯一索引。
  12. );
复制代码
  1. create unique index 索引名 on 表名(列名);
复制代码
  1. drop unique index 索引名 on 表名;
复制代码
1.2.3 索引和联合索引
  1. create table 表名(
  2.     id int not null auto_increment primary key,
  3.     name varchar(32) not null,
  4.     email varchar(64) not null,
  5.     index ix_email (email),
  6.     index ix_name (name),
  7. );
  8. create table 表名(
  9.     id int not null auto_increment primary key,
  10.     name varchar(32) not null,
  11.     email varchar(64) not null,
  12.     index ix_email (name,email)     -- 如果有多列,称为联合索引。
  13. );
复制代码
  1. create index 索引名 on 表名(列名);
复制代码
  1. drop index 索引名 on 表名;
复制代码
在项目开发的设计表结构的环节,大家需要根据业务需求的特点来决定是否创建相应的索引。
案例:博客系统



  • 每张表id列都创建 自增 + 主键。
  • 用户表

    • 用户名 + 密码 创建联合索引。
    • 手机号,创建唯一索引。
    • 邮箱,创建唯一索引。

  • 推荐表

    • user_id和article_id创建联合唯一索引。

1.3 操作表

在表中创建索引后,查询时一定要命中索引。


在数据库的表中创建索引之后优缺点如下:

  • 优点:查找速度快、约束(唯一、主键、联合唯一)
  • 缺点:插入、删除、更新速度比较慢,因为每次操作都需要调整整个B+Tree的数据结构关系。
所以,在表中不要无节制的去创建索引啊。。。
在开发中,我们会对表中经常被搜索的列创建索引,从而提高程序的响应速度。
  1. CREATE TABLE `big` (
  2.     `id` int(11) NOT NULL AUTO_INCREMENT,
  3.     `name` varchar(32) DEFAULT NULL,
  4.     `email` varchar(64) DEFAULT NULL,
  5.     `password` varchar(64) DEFAULT NULL,
  6.     `age` int(11) DEFAULT NULL,
  7.     PRIMARY KEY (`id`),                       -- 主键索引
  8.     UNIQUE KEY `big_unique_email` (`email`),  -- 唯一索引
  9.     index `ix_name_pwd` (`name`,`password`)     -- 联合索引
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
复制代码
一般情况下,我们针对只要通过索引列去搜搜都可以 命中 索引(通过索引结构加速查找)。
  1. select * from big where id = 5;
  2. select * from big where id > 5;
  3. select * from big where email = "wupeiqi@live.com";
  4. select * from big where name = "武沛齐";
  5. select * from big where name = "kelly" and password="ffsijfs";
  6. ...
复制代码
但是,还是会有一些特殊的情况,让我们无法命中索引(即使创建了索引),这也是需要大家在开发中要注意的。


  • 类型不一致
    1. select * from big where name = 123;                -- 未命中
    2. select * from big where email = 123;        -- 未命中
    3. 特殊的主键:
    4. select * from big where id = "123";        -- 命中
    复制代码
  • 使用不等于
    1. select * from big where name != "武沛齐";                                -- 未命中
    2. select * from big where email != "wupeiqi@live.com";  -- 未命中
    3. 特殊的主键:
    4. select * from big where id != 123;        -- 命中
    复制代码
  • or,当or条件中有未建立索引的列才失效。
    1. select * from big where id = 123 or password="xx";                        -- 未命中
    2. select * from big where name = "wupeiqi" or password="xx";        -- 未命中
    3. 特别的:
    4. select * from big where id = 10 or password="xx" and name="xx"; -- 命中
    复制代码
  • 排序,当根据索引排序时候,选择的映射如果不是索引,则不走索引。
    1. select * from big order by name asc;     -- 未命中
    2. select * from big order by name desc;    -- 未命中
    3. 特别的主键:
    4. select * from big order by id desc;  -- 命中
    复制代码
  • like,模糊匹配时。
    1. select * from big where name like "%u-12-19999";        -- 未命中
    2. select * from big where name like "_u-12-19999";        -- 未命中
    3. select * from big where name like "wu-%-10";                -- 未命中
    4. 特别的:
    5. select * from big where name like "wu-1111-%";        -- 命中
    6. select * from big where name like "wu-%";                -- 命中
    复制代码
  • 使用函数
    1. select * from big where reverse(name) = "wupeiqi";  -- 未命中
    2. 特别的:
    3. select * from big where name = reverse("wupeiqi");  -- 命中
    复制代码
  • 最左前缀,如果是联合索引,要遵循最左前缀原则。
    1. 如果联合索引为:(name,password)
    2.     name and password       -- 命中
    3.     name                         -- 命中
    4.     password                -- 未命中
    5.     name or password               -- 未命中
    复制代码
常见的无法命中索引的情况就是上述的示例。
对于大家来说会现在的最大的问题是,记不住,哪怎么办呢?接下来看执行计划。
1.4 执行计划

MySQL中提供了执行计划,让你能够预判SQL的执行(只能给到一定的参考,不一定完全能预判准确)。
  1. explain + SQL语句;
复制代码

其中比较重要的是 type,他是SQL性能比较重要的标志,性能从低到高依次:all < index < range < index_merge < ref_or_null < ref < eq_ref < system/const

  • ALL,全表扫描,数据表从头到尾找一遍。(一般未命中索引,都是会执行权标扫描)
    1. select * from big;
    2. 特别的:如果有limit,则找到之后就不在继续向下扫描.
    3.         select * from big limit 1;
    复制代码
  • INDEX,全索引扫描,对索引从头到尾找一遍
    1. explain select id from big;
    2. explain select name from big;
    复制代码
  • RANGE,对索引列进行范围查找
    1. explain select * from big where id > 10;
    2. explain select * from big where id in (11,22,33);
    3. explain select * from big where id between 10 and 20;
    4. explain select * from big where name > "wupeiqi" ;
    复制代码
  • INDEX_MERGE,合并索引,使用多个单列索引搜索
    1. explain select * from big where id = 10 or name="武沛齐";
    复制代码
  • REF,根据 索引 直接去查找(非键)。
    1. select *  from big where name = '武沛齐';
    复制代码
  • EQ_REF,连表操作时常见。
    1. explain select big.name,users.id from big left join users on big.age = users.id;
    复制代码
  • CONST,常量,表最多有一个匹配行,因为仅有一行,在这行的列值可被优化器剩余部分认为是常数,const表很快。
    1. explain select * from big where id=11;                                        -- 主键
    2. explain select * from big where email="w-11-0@qq.com";        -- 唯一索引
    复制代码
  • SYSTEM,系统,表仅有一行(=系统表)。这是const联接类型的一个特例。
    1. explain select * from (select * from big where id=1 limit 1) as A;
    复制代码
其他列:
  1. id,查询顺序标识
  2. z,查询类型
  3.     SIMPLE          简单查询
  4.     PRIMARY         最外层查询
  5.     SUBQUERY        映射为子查询
  6.     DERIVED         子查询
  7.     UNION           联合
  8.     UNION RESULT    使用联合的结果
  9.     ...
  10.    
  11. table,正在访问的表名
  12. partitions,涉及的分区(MySQL支持将数据划分到不同的idb文件中,详单与数据的拆分)。 一个特别大的文件拆分成多个小文件(分区)。
  13. possible_keys,查询涉及到的字段上若存在索引,则该索引将被列出,即:可能使用的索引。
  14. key,显示MySQL在查询中实际使用的索引,若没有使用索引,显示为NULL。例如:有索引但未命中,则possible_keys显示、key则显示NULL。
  15. key_len,表示索引字段的最大可能长度。(类型字节长度 + 变长2 + 可空1),例如:key_len=195,类型varchar(64),195=64*3+2+1
  16. ref,连表时显示的关联信息。例如:A和B连表,显示连表的字段信息。
  17. rows,估计读取的数据行数(只是预估值)
  18.         explain select * from big where password ="025dfdeb-d803-425d-9834-445758885d1c";
  19.         explain select * from big where password ="025dfdeb-d803-425d-9834-445758885d1c" limit 1;
  20. filtered,返回结果的行占需要读到的行的百分比。
  21.         explain select * from big where id=1;  -- 100,只读了一个1行,返回结果也是1行。
  22.         explain select * from big where password="27d8ba90-edd0-4a2f-9aaf-99c9d607c3b3";  -- 10,读取了10行,返回了1行。
  23.         注意:密码27d8ba90-edd0-4a2f-9aaf-99c9d607c3b3在第10行
  24.        
  25. extra,该列包含MySQL解决查询的详细信息。
  26.     “Using index”
  27.     此值表示mysql将使用覆盖索引,以避免访问表。不要把覆盖索引和index访问类型弄混了。
  28.     “Using where”
  29.     这意味着mysql服务器将在存储引擎检索行后再进行过滤,许多where条件里涉及索引中的列,当(并且如果)它读取索引时,就能被存储引擎检验,因此不是所有带where子句的查询都会显示“Using where”。有时“Using where”的出现就是一个暗示:查询可受益于不同的索引。
  30.     “Using temporary”
  31.     这意味着mysql在对查询结果排序时会使用一个临时表。
  32.     “Using filesort”
  33.     这意味着mysql会对结果使用一个外部索引排序,而不是按索引次序从表里读取行。mysql有两种文件排序算法,这两种排序方式都可以在内存或者磁盘上完成,explain不会告诉你mysql将使用哪一种文件排序,也不会告诉你排序会在内存里还是磁盘上完成。
  34.     “Range checked for each record(index map: N)”
  35.     这个意味着没有好用的索引,新的索引将在联接的每一行上重新估算,N是显示在possible_keys列中索引的位图,并且是冗余的。
复制代码
小结

上述索引相关的内容讲的比较多,大家在开发过程中重点应该掌握的是:

  • 根据情况创建合适的索引(加速查找)。
  • 有索引,则查询时要命中索引。
2. 函数

MySQL中提供了很多函数,为我们的SQL操作提供便利,例如:
  1. mysql> select * from d1;
  2. +----+-----------+
  3. | id | name      |
  4. +----+-----------+
  5. |  1 | 武沛齐    |
  6. |  3 | xxx       |
  7. |  4 | pyyu      |
  8. +----+-----------+
  9. 3 rows in set (0.00 sec)
  10. mysql> select count(id), max(id),min(id),avg(id) from d1;
  11. +-----------+---------+---------+---------+
  12. | count(id) | max(id) | min(id) | avg(id) |
  13. +-----------+---------+---------+---------+
  14. |         3 |       4 |       1 |  2.6667 |
  15. +-----------+---------+---------+---------+
  16. 1 row in set (0.00 sec)
  17. mysql>
  18. mysql>
  19. mysql> select id,reverse(name) from d1;
  20. +----+---------------+
  21. | id | reverse(name) |
  22. +----+---------------+
  23. |  1 | 齐沛武        |
  24. |  3 | xxx           |
  25. |  4 | uyyp          |
  26. +----+---------------+
  27. 3 rows in set (0.00 sec)
  28. mysql> select id, reverse(name),concat(name,name), NOW(), DATE_FORMAT( NOW(),'%Y-%m-%d %H:%i:%s')  from d1;
  29. +----+---------------+--------------------+---------------------+-----------------------------------------+
  30. | id | reverse(name) | concat(name,name)  | NOW()               | DATE_FORMAT( NOW(),'%Y-%m-%d %H:%i:%s') |
  31. +----+---------------+--------------------+---------------------+-----------------------------------------+
  32. |  1 | 齐沛武        | 武沛齐武沛齐       | 2021-05-27 09:18:07 | 2021-05-27 09:18:07                     |
  33. |  3 | xxx           | xxxxxx             | 2021-05-27 09:18:07 | 2021-05-27 09:18:07                     |
  34. |  4 | uyyp          | pyyupyyu           | 2021-05-27 09:18:07 | 2021-05-27 09:18:07                     |
  35. +----+---------------+--------------------+---------------------+-----------------------------------------+
  36. 3 rows in set (0.00 sec)
  37. mysql> select concat("alex","sb");
  38. +---------------------+
  39. | concat("alex","sb") |
  40. +---------------------+
  41. | alexsb              |
  42. +---------------------+
  43. 1 row in set (0.00 sec)
  44. mysql> select sleep(1);
  45. +----------+
  46. | sleep(1) |
  47. +----------+
  48. |        0 |
  49. +----------+
  50. 1 row in set (1.00 sec)
复制代码
部分函数列表:
  1. CHAR_LENGTH(str)
  2.     返回值为字符串str 的长度,长度的单位为字符。一个多字节字符算作一个单字符。
  3.     对于一个包含五个二字节字符集, LENGTH()返回值为 10, 而CHAR_LENGTH()的返回值为5。
  4. CONCAT(str1,str2,...)
  5.     字符串拼接
  6.     如有任何一个参数为NULL ,则返回值为 NULL。
  7. CONCAT_WS(separator,str1,str2,...)
  8.     字符串拼接(自定义连接符)
  9.     CONCAT_WS()不会忽略任何空字符串。 (然而会忽略所有的 NULL)。
  10. CONV(N,from_base,to_base)
  11.     进制转换
  12.     例如:
  13.         SELECT CONV('a',16,2); 表示将 a 由16进制转换为2进制字符串表示
  14. FORMAT(X,D)
  15.     将数字X 的格式写为'#,###,###.##',以四舍五入的方式保留小数点后 D 位, 并将结果以字符串的形式返回。若  D 为 0, 则返回结果不带有小数点,或不含小数部分。
  16.     例如:
  17.         SELECT FORMAT(12332.1,4); 结果为: '12,332.1000'
  18. INSERT(str,pos,len,newstr)
  19.     在str的指定位置插入字符串
  20.         pos:要替换位置其实位置
  21.         len:替换的长度
  22.         newstr:新字符串
  23.     特别的:
  24.         如果pos超过原字符串长度,则返回原字符串
  25.         如果len超过原字符串长度,则由新字符串完全替换
  26. INSTR(str,substr)
  27.     返回字符串 str 中子字符串的第一个出现位置。
  28. LEFT(str,len)
  29.     返回字符串str 从开始的len位置的子序列字符。
  30. LOWER(str)
  31.     变小写
  32. UPPER(str)
  33.     变大写
  34. LTRIM(str)
  35.     返回字符串 str ,其引导空格字符被删除。
  36. RTRIM(str)
  37.     返回字符串 str ,结尾空格字符被删去。
  38. SUBSTRING(str,pos,len)
  39.     获取字符串子序列
  40. LOCATE(substr,str,pos)
  41.     获取子序列索引位置
  42. REPEAT(str,count)
  43.     返回一个由重复的字符串str 组成的字符串,字符串str的数目等于count 。
  44.     若 count <= 0,则返回一个空字符串。
  45.     若str 或 count 为 NULL,则返回 NULL 。
  46. REPLACE(str,from_str,to_str)
  47.     返回字符串str 以及所有被字符串to_str替代的字符串from_str 。
  48. REVERSE(str)
  49.     返回字符串 str ,顺序和字符顺序相反。
  50. RIGHT(str,len)
  51.     从字符串str 开始,返回从后边开始len个字符组成的子序列
  52. SPACE(N)
  53.     返回一个由N空格组成的字符串。
  54. SUBSTRING(str,pos) , SUBSTRING(str FROM pos) SUBSTRING(str,pos,len) , SUBSTRING(str FROM pos FOR len)
  55.     不带有len 参数的格式从字符串str返回一个子字符串,起始于位置 pos。带有len参数的格式从字符串str返回一个长度同len字符相同的子字符串,起始于位置 pos。 使用 FROM的格式为标准 SQL 语法。也可能对pos使用一个负值。假若这样,则子字符串的位置起始于字符串结尾的pos 字符,而不是字符串的开头位置。在以下格式的函数中可以对pos 使用一个负值。
  56.     mysql> SELECT SUBSTRING('Quadratically',5);
  57.         -> 'ratically'
  58.     mysql> SELECT SUBSTRING('foobarbar' FROM 4);
  59.         -> 'barbar'
  60.     mysql> SELECT SUBSTRING('Quadratically',5,6);
  61.         -> 'ratica'
  62.     mysql> SELECT SUBSTRING('Sakila', -3);
  63.         -> 'ila'
  64.     mysql> SELECT SUBSTRING('Sakila', -5, 3);
  65.         -> 'aki'
  66.     mysql> SELECT SUBSTRING('Sakila' FROM -4 FOR 2);
  67.         -> 'ki'
  68. TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str) TRIM(remstr FROM] str)
  69.     返回字符串 str , 其中所有remstr 前缀和/或后缀都已被删除。若分类符BOTH、LEADIN或TRAILING中没有一个是给定的,则假设为BOTH 。 remstr 为可选项,在未指定情况下,可删除空格。
  70.     mysql> SELECT TRIM('  bar   ');
  71.             -> 'bar'
  72.     mysql> SELECT TRIM(LEADING 'x' FROM 'xxxbarxxx');
  73.             -> 'barxxx'
  74.     mysql> SELECT TRIM(BOTH 'x' FROM 'xxxbarxxx');
  75.             -> 'bar'
  76.     mysql> SELECT TRIM(TRAILING 'xyz' FROM 'barxxyz');
  77.             -> 'barx'   
复制代码
更多函数:https://dev.mysql.com/doc/refman/5.7/en/functions.html
当然,MySQL中也支持让你去自定义函数。

  • 创建函数
    1. delimiter $$
    2. create function f1(
    3.     i1 int,
    4.     i2 int)
    5. returns int
    6. BEGIN
    7.     declare num int;
    8.     declare maxId int;
    9.     select max(id) from big into maxId;
    10.    
    11.     set num = i1 + i2 + maxId;
    12.     return(num);
    13. END $$
    14. delimiter ;
    复制代码
  • 执行函数
    1. select f1(11,22);
    2. select f1(11,id),name from d1;
    复制代码
  • 删除函数
    1. drop function f1;
    复制代码
3. 存储过程

存储过程,是一个存储在MySQL中的SQL语句集合,当主动去调用存储过程时,其中内部的SQL语句会按照逻辑执行。


  • 创建存储过程
    1. delimiter $$
    2. create procedure p1()
    3. BEGIN
    4.     select * from d1;
    5. END $$
    6. delimiter ;
    复制代码
  • 执行存储过程
    1. call p1();
    复制代码
    1. #!/usr/bin/env python
    2. # -*- coding:utf-8 -*-
    3. import pymysql
    4. conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='root123', db='userdb')
    5. cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
    6. # 执行存储过程
    7. cursor.callproc('p1')
    8. result = cursor.fetchall()
    9. cursor.close()
    10. conn.close()
    11. print(result)
    复制代码
  • 删除存储过程
    1. drop procedure proc_name;
    复制代码
3.1 参数类型

存储过程的参数可以有如下三种:

  • in,仅用于传入参数用
  • out,仅用于返回值用
  • inout,既可以传入又可以当作返回值
  1. delimiter $$
  2. create procedure p2(
  3.     in i1 int,
  4.     in i2 int,
  5.     inout i3 int,
  6.     out r1 int
  7. )
  8. BEGIN
  9.     DECLARE temp1 int;
  10.     DECLARE temp2 int default 0;
  11.    
  12.     set temp1 = 1;
  13.     set r1 = i1 + i2 + temp1 + temp2;
  14.    
  15.     set i3 = i3 + 100;
  16. end $$
  17. delimiter ;
复制代码
  1. set @t1 =4;
  2. set @t2 = 0;
  3. CALL p2 (1, 2 ,@t1, @t2);
  4. SELECT @t1,@t2;
复制代码
  1. #!/usr/bin/env python
  2. # -*- coding:utf-8 -*-
  3. import pymysql
  4. conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='root123', db='userdb')
  5. cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
  6. # 执行存储过程
  7. cursor.callproc('p2',args=(1, 22, 3, 4))
  8. # 获取执行完存储的参数
  9. cursor.execute("select @_p2_0,@_p2_1,@_p2_2,@_p2_3")
  10. result = cursor.fetchall()
  11. # {"@_p2_0":11 }
  12. cursor.close()
  13. conn.close()
  14. print(result)
复制代码
3.2 返回值 & 结果集
  1. delimiter $$
  2. create procedure p3(
  3.     in n1 int,
  4.     inout n2 int,
  5.     out n3 int
  6. )
  7. begin
  8.     set n2 = n1 + 100;
  9.     set n3 = n2 + n1 + 100;
  10.     select * from d1;
  11. end $$
  12. delimiter ;
复制代码
  1. set @t1 =4;
  2. set @t2 = 0;
  3. CALL p3 (1,@t1, @t2);
  4. SELECT @t1,@t2;
复制代码
  1. #!/usr/bin/env python
  2. # -*- coding:utf-8 -*-
  3. import pymysql
  4. conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='root123', db='userdb')
  5. cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
  6. # 执行存储过程
  7. cursor.callproc('p3',args=(22, 3, 4))
  8. table = cursor.fetchall() # 得到执行存储过中的结果集
  9. # 获取执行完存储的参数
  10. cursor.execute("select @_p3_0,@_p3_1,@_p3_2")
  11. rets = cursor.fetchall()
  12. cursor.close()
  13. conn.close()
  14. print(table)
  15. print(rets)
复制代码
3.3 事务 & 异常

事务,成功都成功,失败都失败。
  1. delimiter $$
  2. create PROCEDURE p4(
  3.     OUT p_return_code tinyint
  4. )
  5. BEGIN
  6.   DECLARE exit handler for sqlexception
  7.   BEGIN
  8.     -- ERROR
  9.     set p_return_code = 1;
  10.     rollback;
  11.   END;
  12.   DECLARE exit handler for sqlwarning
  13.   BEGIN
  14.     -- WARNING
  15.     set p_return_code = 2;
  16.     rollback;
  17.   END;
  18.   START TRANSACTION;  -- 开启事务
  19.     delete from d1;
  20.     insert into tb(name)values('seven');
  21.   COMMIT;  -- 提交事务
  22.   -- SUCCESS
  23.   set p_return_code = 0;
  24.   END $$
  25. delimiter ;
复制代码
  1. set @ret =100;
  2. CALL p4(@ret);
  3. SELECT @ret;
复制代码
  1. #!/usr/bin/env python
  2. # -*- coding:utf-8 -*-
  3. import pymysql
  4. conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='root123', db='userdb')
  5. cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
  6. # 执行存储过程
  7. cursor.callproc('p4',args=(100))
  8. # 获取执行完存储的参数
  9. cursor.execute("select @_p4_0")
  10. rets = cursor.fetchall()
  11. cursor.close()
  12. conn.close()
  13. print(table)
  14. print(rets)
复制代码
3.4 游标
  1. delimiter $$
  2. create procedure p5()
  3. begin
  4.     declare sid int;
  5.     declare sname varchar(50);
  6.     declare done int default false;
  7.     declare my_cursor CURSOR FOR select id,name from d1;
  8.    
  9.     DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
  10.    
  11.     open my_cursor;
  12.         xxoo: LOOP
  13.             fetch my_cursor into sid,sname;
  14.             IF done then
  15.                 leave xxoo;
  16.             END IF;
  17.             insert into t1(name) values(sname);
  18.         end loop xxoo;
  19.     close my_cursor;
  20. end $$
  21. delimiter ;
复制代码
  1. call p5();
复制代码
4.视图

视图其实是一个虚拟表(非真实存在),其本质是【根据SQL语句获取动态的数据集,并为其命名】,用户使用时只需使用【名称】即可获取结果集,并可以将其当作表来使用。
  1. SELECT
  2.     *
  3. FROM
  4.     (SELECT nid,name FROM tb1 WHERE nid > 2) AS A
  5. WHERE
  6.     A.name > 'alex';
复制代码

  • 创建视图
    1. create view v1 as select id,name from d1 where id > 1;
    复制代码
  • 使用视图
    1. select * from v1;
    2. -- select * from (select id,name from d1 where id > 1) as v1;
    复制代码
  • 删除视图
    1. drop view v1;
    复制代码
  • 修改视图
    1. alter view v1 as SQL语句
    复制代码
注意:基于视图只能查询,针对视图不能执行 增加、修改、删除。 如果源表发生变化,视图表也会发生变化。
5.触发器


对某个表进行【增/删/改】操作的前后如果希望触发某个特定的行为时,可以使用触发器。
  1. # 插入前
  2. CREATE TRIGGER tri_before_insert_tb1 BEFORE INSERT ON tb1 FOR EACH ROW
  3. BEGIN
  4.     ...
  5. END
  6. # 插入后
  7. CREATE TRIGGER tri_after_insert_tb1 AFTER INSERT ON tb1 FOR EACH ROW
  8. BEGIN
  9.     ...
  10. END
  11. # 删除前
  12. CREATE TRIGGER tri_before_delete_tb1 BEFORE DELETE ON tb1 FOR EACH ROW
  13. BEGIN
  14.     ...
  15. END
  16. # 删除后
  17. CREATE TRIGGER tri_after_delete_tb1 AFTER DELETE ON tb1 FOR EACH ROW
  18. BEGIN
  19.     ...
  20. END
  21. # 更新前
  22. CREATE TRIGGER tri_before_update_tb1 BEFORE UPDATE ON tb1 FOR EACH ROW
  23. BEGIN
  24.     ...
  25. END
  26. # 更新后
  27. CREATE TRIGGER tri_after_update_tb1 AFTER UPDATE ON tb1 FOR EACH ROW
  28. BEGIN
  29.     ...
  30. END
复制代码
  1. DROP TRIGGER tri_after_insert_tb1;
复制代码
示例:

  • 在 t1 表中插入数据之前,先在 t2 表中插入一行数据。
    1. delimiter $$
    2. CREATE TRIGGER tri_before_insert_t1 BEFORE INSERT ON t1 FOR EACH ROW
    3. BEGIN
    4.     -- NEW.id  NEW.name  NEW.email
    5.     -- INSERT INTO t2 (name) VALUES();
    6.     IF NEW.name = 'alex' THEN
    7.         INSERT INTO t2 (name) VALUES(NEW.id);
    8.     END IF;
    9. END $$
    10. delimiter ;
    复制代码
    1. insert into t1(id,name,email)values(1,"alex","xxx@qq.com")
    复制代码
  • 在t1表中删除数据之后,再在t2表中插入一行数据。
    1. delimiter $$
    2. CREATE TRIGGER tri_after_insert_t1 AFTER DELETE ON t1 FOR EACH ROW
    3. BEGIN
    4. IF OLD.name = 'alex' THEN
    5.     INSERT INTO t2 (name) VALUES(OLD.id);
    6. END IF;
    7. END $$
    8. delimiter ;
    复制代码
特别的:NEW表示新数据,OLD表示原来的数据。
总结

对于Python开发人员,其实在开发过程中触发器、视图、存储过程用的很少(以前搞C#经常写存储过程),最常用的其实就是正确的使用索引以及常见的函数。

  • 索引,加速查找 & 约束。

    • innodb和myisam的区别,聚簇索引 和 非聚簇索引。
    • 常见的索引:主键、唯一、普通。
    • 命中索引
    • 执行计划

  • 函数,提供了一些常见操作 & 配合SQL语句,执行后返回结果。
  • 存储过程,一个SQL语句的集合,可以出发复杂的情况,最终可以返回结果 + 数据集。
  • 视图,一个虚拟的表。
  • 触发器,在表中数据行执行前后自定义一些操作。

来源:https://www.cnblogs.com/sbhglqy/p/18160427
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具