07 2023 档案

摘要:>ERROR 1148 (42000): The used command is not allowed with this MySQL version ```SQL SHOW VARIABLES LIKE 'local_infile'; ``` 1. **修改/etc/my.ini** ```CS 阅读全文
posted @ 2023-07-08 10:53 山风拂水弦 阅读(80) 评论(0) 推荐(0)
摘要:MySQL的慢查询日志默认没有开启,我们可以查看一下系统变量 slow_query_log。 ```SQL show variables like 'slow_query_log'; ``` 1. **修改/etc/my.ini** ```CSS 如果要开启慢查询日志,需要在MySQL的配置文件(E 阅读全文
posted @ 2023-07-08 10:05 山风拂水弦 阅读(222) 评论(0) 推荐(0)
摘要:```java // 方式一:第一步不支付费用 class Solution { public int minCostClimbingStairs(int[] cost) { int len = cost.length; int[] dp = new int[len + 1]; // 从下标为 0 阅读全文
posted @ 2023-07-04 16:47 山风拂水弦 阅读(22) 评论(0) 推荐(0)