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
阅读全文
摘要:MySQL的慢查询日志默认没有开启,我们可以查看一下系统变量 slow_query_log。 ```SQL show variables like 'slow_query_log'; ``` 1. **修改/etc/my.ini** ```CSS 如果要开启慢查询日志,需要在MySQL的配置文件(E
阅读全文
摘要:```java // 方式一:第一步不支付费用 class Solution { public int minCostClimbingStairs(int[] cost) { int len = cost.length; int[] dp = new int[len + 1]; // 从下标为 0
阅读全文
浙公网安备 33010602011771号