摘要:
在我们编写sql的过程中where的条件使用不当会使索引(index)失效 1. 在 where 子句中使用!=或<>操作符,会使引擎放弃使用索引而进行全表扫描 2. 在 where 子句中对字段进行 null 值判断,会使引擎放弃使用索引而进行全表扫描 3. 在 where 子句中使用 or 来连 阅读全文
摘要:
import java.io.BufferedReader; import java.io.File; import java.io.FileReader; public class TxtChange { public static void main(String[] args){ File f 阅读全文
摘要:
package qiuhe;public class qiuhe { public static void main(String args[]) { // TODO Auto-generated method stub int matrix[][]={{1000000000,-2000000000 阅读全文