摘要:
一,MySQL 基本句式 select * from tableName where ... order by ... limit [n,]m; 就是查询从第n条数据后的m 条数据。n可由可无。 子查询的分页方式,提高查询速度 select * from tableName where id>= ( 阅读全文
摘要:
在interface 中的方法也可以有方法体 public interface InterfaceMethod { public static int ID=1;//默认为 final static 即常量 //public InterfaceMethod(){} public static voi 阅读全文