CSDN博客地址
摘要: 先建立数据库,代码如下: create database if not exists "emp"; use emp; drop table if exists "dept"; create table dept( `depid` varchar(50) NOT NULL, `deptname` va 阅读全文
posted @ 2017-03-21 14:16 Yi_warmth 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 1:group by (进行分组) 例:将从员工表employee表中搜索每个部门中工资最高的薪水,可以使用以下的SQL语句 select max(salary),dept from employee group by dept; 2: group by 顾名思义就是按照xxx进行分组,它必须有“聚 阅读全文
posted @ 2017-03-21 13:59 Yi_warmth 阅读(3571) 评论(0) 推荐(0) 编辑
CSDN博客地址