数据库
热心市民乌蝇哥
让世上程序再无bug。
展开
-
【mysql数据库报错】The MySQL server is running with the --secure-file-priv option so it
【mysql数据库导出文件报错】The MySQL server is running with the --secure-file-priv option so it cannot execute this statement 报错场景:使用 into outfile 导出文件时报错。 运行: show variables like '%secure%'; 查看“secure_fil...原创 2019-11-13 16:23:05 · 402 阅读 · 0 评论 -
SQL查询优化方法 提高SQL查询效率 数据库的哪些字段适合添加索引
如何提高sql的查询效率 在正确的字段上创建索引。 优化查询sql的写法(特别是where语句的写法)。 一、数据库的哪些字段适合添加索引 表的某个字段值得离散度越高,该字段越适合选作索引的关键字。主键字段以及唯一性约束字段适合选作索引的关键字,原因就是这些字段的值非常离散。ps:mysql 在处理主键约束以及唯一性约束时,考虑周全。数据库用户创建主键约束的同时,mysql 自动...原创 2019-11-13 16:12:21 · 1030 阅读 · 0 评论