摘要:
1、order by 排序 select * from employee order by salary ASC limit 10; //查询出按salary排序最低的的10,名员工 2.distinct 获取不重复的唯一值 select distinct first_name from emplo 阅读全文
摘要:
关于java中遍历map具体哪四种方式: 方式一 这是最常见的并且在大多数情况下也是最可取的遍历方式。在键值都需要时使用。 Map<Integer, Integer> map = new HashMap<Integer, Integer>(); for (Map.Entry<Integer, Int 阅读全文