摘要:
删除window 指定目录重复文件 package cn.liuyangjob; import java.io.File; public class AllText { public void getAllFiles() { File file = new File("K:/music"); if 阅读全文
摘要:
目的:mysql模糊查询优化 select* from test where name like '%keyword%'; 使用like关键词不会用到索引,查询效率也比较低 优化如下:使用instr,position,locate函数 SELECT * FROM test where instr(' 阅读全文
摘要:
使用navicat 连接出现问题: Client does not support authentication protocol ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; # 阅读全文