摘要:
分页思路1 1.先查询出已经看过的数据,然后从总的数据中排除已经看过的数据,剩下的数据取前n条 例:每页5条数据,要看第三页 select top 5 * from Contacts where contactId not in (select top ((3-1)*5) contactId fro 阅读全文
摘要:
this关键字 表示类中的属性和方法调用本类中的构造方法表示当前对象。 代码 public class text01_1 { public static void main(String[] args){ //System.out.print(args[0]); People pl=new Peop 阅读全文