查询某⼀年份出⽣的学⽣_简单查询(sql)1.查询学⽣表
查询学⽣表中所有的学⽣信息
select * from student;
select distinct 学号,姓名 from student; # 表⽰对学号,姓名同时满⾜唯⼀性
select 学号 as 学⽣证号码, 姓名,出⽣⽇期as ⽣⽇; # as 对查询结果重命名
2.练习sql运⾏顺序。
select ⼦句最后运⾏,其他⼦按安书写顺序进⾏。
先在student表中查询学号=001的学⽣,然后显⽰该条件的结果。
eg:select * from student where 学号=001;
3. 算数运算符和⽐较运算符(+-*/, =,<>,>>=,<=)
select 教师名称 , 教师号 from teacher where 教师名称 is not null;
select distinct fromselect 学号,姓名,出⽣⽇期 from student where 出⽣⽇期<'1995-05-22';
select 姓名, 出⽣⽇期 from student where 出⽣⽇期 BETWEEN'1991-01-01' and '1996-01-01';
select 学号,成绩 from score where 成绩>=70;
4.逻辑运算符
select 学号,成绩 from score where 成绩>=70 and 成绩<=99 ;
in 是or 的简便写法 // not in
select 姓名,性别 from student where 姓名 in('猴⼦','马云');// or where 姓名='猴⼦' or 姓名='马云' 5.模糊查询
猴% (2个字符,第⼀个字符猴开头)
%猴(2个字符,后⾯字符猴结尾)
%猴%(3个字符,中间字是猴)
select 姓名 from student where 姓名 like '%猴';
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论