摘要: mysq查询l优化 指标:执行时间 检查的行数 返回的行数 explain关键字 -- 实际SQL,查找用户名为Jefabc的员工 select * from emp where name = 'Jefabc'; -- 查看SQL是否使用索引,前面加上explain即可 explain select 阅读全文
posted @ 2022-04-24 16:54 and脱发周大侠 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 一:创建maven项目 导入maven <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>2.7.6</version> </d 阅读全文
posted @ 2022-04-24 16:32 and脱发周大侠 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 一、什么是numpy? NumPy(Numerical Python)是Python的一种开源的数值计算扩展。这种工具可用来存储和处理大型矩阵,比Python自身的嵌套列表(nested list structure)结构要高效的多(该结构也可以用来表示矩阵(matrix)),支持大量的维度数组与矩 阅读全文
posted @ 2022-04-24 16:07 and脱发周大侠 阅读(328) 评论(0) 推荐(0) 编辑