数据库基础培训SQL语言培训1教案.ppt
《数据库基础培训SQL语言培训1教案.ppt》由会员分享,可在线阅读,更多相关《数据库基础培训SQL语言培训1教案.ppt(21页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、n数据库基础培训SQL语言培训1n Still waters run deep.流静水深流静水深,人静心深人静心深 nWhere there is life,there is hope。有生命必有希望。有生命必有希望北明软件员工培训讲义2章节n查询数据的SQL语句n修改数据的SQL语句n管理数据定义的SQL语句3查询数据的SQL语句nSELECT 语句4查询数据的SQL语句-SELECTn本章讲述如何使用SELECT语句的五个子句。n在SELECT语句中,你必须按以下顺序使用这些子句:nSELECT子句nFROM子句nWHERE子句nORDER BY子句SELECT 字段1,字段2字段n FR
2、OM 表1,表 2表n5SELECT语句基础n可以用多种方法来查询数据库中的一个表。你可以裁剪SELECT语句来达到以下目的:n检索所有的或指定的列select id,name from student (查询编号,姓名)select*from student(查询所有字段)n对检索所得的数据执行计算或其它函数select id,name,sum(mark)from student group by id,name(按照编号、姓名为分组,对“成绩”进行汇总)(简单的说,就是查询每个学生的总成绩)6Where子句nWhere 子句用于限制数据nselect id,name from studen
3、t where id=222233444上句查找出编号为222233444的学生的学生编号和姓名nselect id,name from student where name like 张%上句查找出姓名为“张”开头的学生的学生编号和姓名其它约束方法:nWhere column1 like _b%(部分匹配,%为通配符,表示=0个任意字符,_表示一个任意字符)nWhere id between 10000 and 20000 (范围匹配)nWhere id=10000 and id=20000nWhere id in(100001,100005,133434)(集合匹配)nWhere name
4、 is NULL(空值匹配)nWhere name is not NULL (非空值匹配)nWhere column1=column2 (字段间匹配)(=,=,.)7Where子句(2)n多条件限制1)select id,name from student where id 23456 and name like 张%2)select id,name from student where id 23456 or name like 张%3)select id,name from student where(id 23456 or name like 张%)and mark60 不要考虑条件匹配
5、的先天优先级,在你想优先匹配的地方加上括号,永远是对的8Order by 子句(用于排序)n单列排序nSelect id,name from student order by id asc (升序)nSelect id,name from student order by id desc (降序)n多列排序select id,name,mark from student order by mark desc,id asc(先按照成绩降序,如果成绩相同,则按照编号升序)asc可以省略,因为默认是按照升序排列但是desc不可以如:select id,name from student order
6、by id (升序)9Group by(用于汇总计算)nGROUP 中文意思:分组nselect id,name,sum(mark)from student group by id,name(上句按照id,name 为分组,计算mark的汇总值)nSelect id,name,avg(mark),sum(mark)from student group by id,name(上句按照id,name 为分组,计算mark的平均值)nSelect id,name,avg(mark)from student group by id(上一句语法是错误的,因为有一个字段name在分组之外,数据库不知道怎么
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 数据库 基础 培训 SQL 语言 教案
限制150内