查看“SQL优化”的源代码
←
SQL优化
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
=== 索引 === ==== 使用索引优化查询条件及排序字段 ==== ti_f_identity 近两百万数据,原查询需要 3 秒。建立索引后,小于 0.1 秒(以下未注明时间)。 create index i_ti_f_identity_env_reg on ti_f_identity(environment_id, register_at, identity_code); SELECT * FROM ti_f_identity WHERE register_state = 3 AND environment_id = '1722454762444832770' ORDER BY register_at DESC LIMIT 10 SELECT * FROM ti_f_identity WHERE 1=1 and register_state = 2 AND environment_id = 'ABC123' ORDER BY register_at DESC LIMIT 10 SELECT * FROM ti_f_identity WHERE 1=1 and register_state = 2 and template_code = '42cbd45b-f03b-4840-bdb0-965238c4c071' AND environment_id = 'ABC123' ORDER BY register_at DESC LIMIT 10 -- 这个 SQL 执行时间是 1.6 秒。 SELECT * FROM ti_f_identity WHERE 1=1 and register_state = 2 and identity_code like '88.102.111/42cbd45b-f03b-4840-bdb0-965238c4c071%' AND environment_id = 'ABC123' ORDER BY register_at DESC LIMIT 10 [[分类:Develop]] [[分类:DB]]
返回
SQL优化
。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
查看
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
目录
文章分类
侧边栏
帮助
工具
链入页面
相关更改
特殊页面
页面信息