mysql执行计划中的extra列中表明了执行计划的每一步中的实现细节,其中包含了与索引相关的一些细节信息 其中跟索引有关的using index 在不同的情况下会出现Using index, Using where Using index ,Using index condition等 那么Using index 和…
请教各路高手:mysql的Explain结果中Extra为空值代表什么意思? explain select a.id,a.cid,a.title,a.date,a.description,b.ctitle,b.cname from tb_2_content as a left join tb_2_category as b on (a.cidb.cid) order by id desc limit 6 a是文章表&a…
smb共享盘的文件在linux里,文件名有“:”。导致会在windos上产生乱码 文件太大太多,又不想重新在原文件上修改。软连接在windos不识别。最终决定用硬连接的方式。 #!/bin/bash for file in ls $1 do ln -f 1 " / " 1"/"…
异常信息:Cannot invoke "com.example.marketmanagement.mapper.UserMapper.getAllUsers()" because "this.userMapper" is null
犯了个很zz的错误,习惯性直接声明变量,切记spring boot对所有用标记的mapper类声明时&am…