码迷,mamicode.com
首页 > 数据库 > 详细

mysql查询语句

时间:2019-11-12 12:44:51      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:bsp   ase   模糊   uname   姓名   group   select   条件   end   

-- 查询所有学生的姓名和性别(条件运算)
select stuname as 姓名, case stusex when 1 then ‘男‘ else ‘女‘ end as 性别 from tb_student;
select stuname as 姓名, if(stusex, ‘男‘, ‘女‘) as 性别 from tb_student;
-- 查询姓"杨"名字两个字的学生姓名和性别(模糊)
select stuname, stusex from tb_student where stuname like ‘杨_‘;

-- 查询姓"杨"名字三个字的学生姓名和性别(模糊)
select stuname, stusex from tb_student where stuname like ‘杨__‘;

-- 查询没有录入家庭住址的学生姓名(空值)
select stuname from tb_student where stuaddr is null;

-- 查询课程编号为1111的课程的平均成绩(筛选和聚合函数)
select avg(score) from tb_record where cid=1111;

-- 查询每个学生的学号和平均成绩(分组和聚合函数)
select sid as 学号, avg(score) as 平均分 from tb_record group by sid;
 
 

mysql查询语句

标签:bsp   ase   模糊   uname   姓名   group   select   条件   end   

原文地址:https://www.cnblogs.com/qiaoer1993/p/11841005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!