A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Hardstyle 初级黑马   /  2019-6-6 16:03  /  649 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

             SQL中的DQL查询语言
DQL:data Query language 数据查询语言

格式:select[distinct] 字段1,字段2 from 表名 where 控制条件
(distinct: 显示结果时,是否去除重复列 给哪一列去重就在哪一列字段前加入distinct)

学生表
(1)查询表中的所有信息
SELECT * FROM student
(2)查询表中的所有学生姓名和对应的英语成绩
SELECT name,english FROM student
注:可显示部分字段,如果显示哪列数据,就直接写字段名称即可

(3) 过滤表中重复的math成绩

SELECT DISTINCT math FROM student;
1
(4) 创建一个student类 添加属性id,name,sex,chinese,English,math
并随机增加5条属性

在这里插入图片描述

select * from student;

– 查询英语在70到75之间的学生的信息

-- select * from student where english BETWEEN 70 AND 75;
1
– 查询语文是80或者82或者90分的学生信息

-- select * from student where chinese IN(80,82,90);
1
– 查询所有首字母为l的学生的成绩

--  select * from student where name like "l%";
1
– 查询数学大于80且语文大于80 的同学

-- select * from student where math>80 and chinese>90;
1
– 对数学成绩排序后输出 (默认升序 ASC)

-- select * from student order by math;
1
– 对数学成绩排序后输出(降序 DESC)

-- SELECT * FROM student order by math DESC;
1
– 指定多个字段进行排序,先按第一个字段进行排序,如果相同则按第二个字段进行排序

   -- SELECT * FROM student ORDER BY math DESC,chinese DESC;
1
– WHERE后可以加 ORDER BY

-- SELECT * from student where name like "%l" ORDER BY math DESC;
1
– 显示student 表格中的前3行

SELECT * from student LIMIT 2;
1
– 显示student 表格中的第3~5行

SELECT * from student LIMIT 2,3; -- 2表示偏移量,3表示显示的行数
1

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马