摘要:
SimpleDateFormat parserSDF = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzzz yyyy", Locale.ENGLISH);Date date = parserSDF.parse("Wed Oct 16 00:00:00 CE 阅读全文
摘要:
exists : 强调的是是否返回结果集,不要求知道返回什么, 比如: select name from student where sex = 'm' and mark exists(select 1 from grade where ...) ,只要exists引导的子句有结果集返回,那么exi 阅读全文
摘要:
对中文名称进行排序,不多说,上代码 package test; import java.text.Collator; import java.util.Comparator; public class SortChineseName implements Comparator<Person>{ Co 阅读全文