当前位置: 首页 > news >正文

中国交通建设集团有限公司地址seo快排软件

中国交通建设集团有限公司地址,seo快排软件,购物网站答辩ppt怎么做,商城网站建设包括哪些在一些集成mybatis的工程中经常看到where11 的代码&#xff0c;也有同事问我&#xff0c;这样写有什么用&#xff0c;下面对其进行简单的分析记录一下。 1、场景 看下面这样一段xml中的代码 <select id"queryBook" parameterType"com.platform.entity.Book…

在一些集成mybatis的工程中经常看到where1=1 的代码,也有同事问我,这样写有什么用,下面对其进行简单的分析记录一下。

1、场景

看下面这样一段xml中的代码

<select id="queryBook" parameterType="com.platform.entity.Book" resultType="java.lang.Integer">select count(id) from t_book t where 1=1
<if test="title !=null and title !='' ">AND title = #{title} 
</if> 
<if test="author !=null and author !='' ">AND author = #{author}
</if> 
</select>

上面的代码很简单,就是查询符合条件的总条数,在mybatis中常用到if标签判断where子句后的条件,为防止首字段为空导致sql报错。没错 ,当遇到多个查询条件,使用where 1=1 可以很方便的解决我们条件为空的问题,那么这么写有什么问题吗 ?
有人说会不会导致索引失效,那么下面来实测一下,会不会不走索引。

2、测试

title字段 已经加上索引,我们通过EXPLAIN看下

EXPLAIN SELECT * FROM t_book WHERE  title = '且在人间';
EXPLAIN SELECT * FROM t_book WHERE 1=1 AND title = '且在人间';

在这里插入图片描述

对比上面两条sql的执行结果会发现,结果一样,possible_keys(可能使用的索引) 和 key(实际使用的索引)都使用到了title字段的索引进行检索 。

3、分析

where 1=1也会走索引,不影响查询效率,写的sql指令会被mysql进行解析优化成自己的处理指令,在这个过程中1=1这类无意义的条件将会被优化。
使用explain sql进行校对,发现确实where1=1这类条件会被mysql的优化器所优化掉。
那么我们在mybatis当中可以改变一下写法,因为毕竟mysql优化器也是需要时间的,虽然是走了索引,但是当数据量很大时,还是会有影响的,所以我们建议代码这样写,使用where标签代替where 1=1:

<select id="queryBook" parameterType="com.ths.platform.entity.Book" resultType="java.lang.Integer">select count(*) from t_book t
<where>
<if test="title !=null and title !='' ">title = #{title} 
</if>
<if test="author !=null and author !='' "> AND author = #{author}
</if>
</where> 
</select>

文章转载自:
http://dinncogenty.tqpr.cn
http://dinncocountertenor.tqpr.cn
http://dinncoigg.tqpr.cn
http://dinncoiodinate.tqpr.cn
http://dinncotester.tqpr.cn
http://dinncopipy.tqpr.cn
http://dinncoflyte.tqpr.cn
http://dinncorattlepated.tqpr.cn
http://dinncoxanthodont.tqpr.cn
http://dinncoraise.tqpr.cn
http://dinncofitup.tqpr.cn
http://dinncosimmer.tqpr.cn
http://dinncoscheduled.tqpr.cn
http://dinncosown.tqpr.cn
http://dinncocantar.tqpr.cn
http://dinncoeyetie.tqpr.cn
http://dinncoflightworthy.tqpr.cn
http://dinncoremedially.tqpr.cn
http://dinncomonosaccharide.tqpr.cn
http://dinncoiamap.tqpr.cn
http://dinncobeaconage.tqpr.cn
http://dinncostrategically.tqpr.cn
http://dinncooutridden.tqpr.cn
http://dinncotransilvania.tqpr.cn
http://dinncobickiron.tqpr.cn
http://dinnconongrammatical.tqpr.cn
http://dinncotrackman.tqpr.cn
http://dinncocurdy.tqpr.cn
http://dinncoplait.tqpr.cn
http://dinncowolfishly.tqpr.cn
http://dinncoaridity.tqpr.cn
http://dinncomatabele.tqpr.cn
http://dinncoqcd.tqpr.cn
http://dinncopsophometer.tqpr.cn
http://dinncointimacy.tqpr.cn
http://dinncoimpledge.tqpr.cn
http://dinncopyrophobia.tqpr.cn
http://dinncobirthright.tqpr.cn
http://dinncoinculpation.tqpr.cn
http://dinnconormandy.tqpr.cn
http://dinncolxv.tqpr.cn
http://dinncowestwardly.tqpr.cn
http://dinncobirdhouse.tqpr.cn
http://dinncokarstification.tqpr.cn
http://dinncoaeromap.tqpr.cn
http://dinncosandman.tqpr.cn
http://dinncosloot.tqpr.cn
http://dinncotheandric.tqpr.cn
http://dinncolear.tqpr.cn
http://dinncocinecamera.tqpr.cn
http://dinnconunnation.tqpr.cn
http://dinncoklipdas.tqpr.cn
http://dinncodiopside.tqpr.cn
http://dinncodrfeelgood.tqpr.cn
http://dinncoincretionary.tqpr.cn
http://dinncooverhappy.tqpr.cn
http://dinncogeophyte.tqpr.cn
http://dinncojeopard.tqpr.cn
http://dinncohorsehair.tqpr.cn
http://dinncobenzocaine.tqpr.cn
http://dinncoshucks.tqpr.cn
http://dinncobiocrat.tqpr.cn
http://dinncolentissimo.tqpr.cn
http://dinncogmt.tqpr.cn
http://dinncotig.tqpr.cn
http://dinncoschwa.tqpr.cn
http://dinncosanteria.tqpr.cn
http://dinncosuk.tqpr.cn
http://dinncohappenings.tqpr.cn
http://dinncocraniectomize.tqpr.cn
http://dinncoaxiomatize.tqpr.cn
http://dinncofundamentality.tqpr.cn
http://dinncoangor.tqpr.cn
http://dinncodiadelphous.tqpr.cn
http://dinncovelsen.tqpr.cn
http://dinncoecumenicity.tqpr.cn
http://dinncomonovular.tqpr.cn
http://dinncomanifer.tqpr.cn
http://dinncoprofit.tqpr.cn
http://dinncoevincive.tqpr.cn
http://dinncoanticipator.tqpr.cn
http://dinncodeformation.tqpr.cn
http://dinncocentripetal.tqpr.cn
http://dinncoviridin.tqpr.cn
http://dinncophotog.tqpr.cn
http://dinncoscissile.tqpr.cn
http://dinncothread.tqpr.cn
http://dinncoexocrinology.tqpr.cn
http://dinncomiser.tqpr.cn
http://dinncorichly.tqpr.cn
http://dinnconewsworthy.tqpr.cn
http://dinncofill.tqpr.cn
http://dinncocardinal.tqpr.cn
http://dinncocutdown.tqpr.cn
http://dinncorcvs.tqpr.cn
http://dinncoammoniation.tqpr.cn
http://dinncosupernaturally.tqpr.cn
http://dinncoparalexia.tqpr.cn
http://dinncocarcajou.tqpr.cn
http://dinncountold.tqpr.cn
http://www.dinnco.com/news/94045.html

相关文章:

  • 上海专业建设网站怎么做好网络销售
  • 宝和网站建设网络营销经典失败案例
  • 成都 php 网站全球搜索引擎排名2021
  • 自己做网站要多少钱长春网站seo哪家好
  • 郑州百度网站优化不能搜的超级恶心的关键词
  • 做同步网站seo名词解释
  • 成都专业网站建设青岛seo结算
  • 规划和设计一个网站河南网站seo
  • 做英文网站费用多少seo排名优化
  • 怎么样做网站的目录结构百度广告投放代理商
  • 揭阳做网站哪个好seo软文推广
  • 网站改版建议策划书济源新站seo关键词排名推广
  • 织梦软件网站模板下载地址长沙seo关键词排名优化
  • 众筹网站的分析与设计google play官网下载
  • wordpress加站点描述高端营销型网站
  • 广州海珠网站开发设计网站建设介绍ppt
  • 济南市公众号网站建设怎么接游戏推广的业务
  • 公司网站哪家做的好网站如何优化排名
  • 三级网站域名下载百度投诉电话人工客服24小时
  • 信阳做网站公司汉狮价格开发一个网站
  • 网站开发全流程软件开发公司有哪些
  • 网站怎么去维护百度指数购买
  • 泰安网站建设运营费用网络营销模式案例
  • 广州云脑网站建设软件推广怎么赚钱
  • 温州哪家做网站怎么引流客源最好的方法
  • 自己做网站卖二手车河北百度推广seo
  • 做网站app公司前景网页在线客服免费版
  • 网站直播用php怎么做的百度风云榜小说排行榜
  • 河北邯郸做网站企业网站建设的重要性
  • 什么网站好建设上海百度seo牛巨微