我是靠谱客的博主 大气猫咪,最近开发中收集的这篇文章主要介绍mysql查询优化和参数优化,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#建表

use test;

create table if not exists t(id int,num int defalult 0,name varchar(20));

create index ix_num on t(num);

#避免查询null 

#未使用索引

select id from t where num=null;

#使用索引

select id from t where num=0;

#避免使用!=、<>(也是!=) 未使用索引

select * from t where num!=5;

select * from t where num<>5;

#避免使用or 未使用索引

select id from t where num=10 or num=20;

#使用索引

select id from t where num=10

union

select id from t where num=20;

-- 一个表的索引不超过6个

最后

以上就是大气猫咪为你收集整理的mysql查询优化和参数优化的全部内容,希望文章能够帮你解决mysql查询优化和参数优化所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部