摘要:
封装类Attribute: public class Attribute { private int id; private String name; private int age; public int getId() { return id; } public void setId(int id) { ... 阅读全文
摘要:
1 阿里巴巴的fastjson import com.alibaba.fastjson.JSON; 使用的时候 JSON.toJSON(list); 2 Gson 解析json数据 import com.google.gson.Gson; Gson gson=new Gson(); gson.toJ 阅读全文
摘要:
--top not in方式 select top 条数 * from tablename where Id not in (select top 条数*页数 Id from tablename) --ROW_NUMBER() OVER()方式 select * from ( select *, ROW_NUMBER() OVER(Order by Id ) AS ... 阅读全文