摘要:
-- 高级查询 -- 聚合函数-- sum求和,count计数,avg平均值,max最大值,min最小值 -- 分组函数 (group by)-- where写在 group by 之前-- order by 写在 group by 后面-- select 后面只能出现分组的依据和聚合函数 -- 联 阅读全文
摘要:
1.首先代码完成建表操作 2.增insert into studen《——(这里放你要添加的表) values(这里面放添加的属性) 3.delete from student《——(这里放你要删除的表); 4.改update student set name='小明' where id=1;whe 阅读全文