4-MySQL函数(字段处理函数&条件判断函数)

2020-04-09  本文已影响0人  一只森林鹿Luluzeng

一、字段处理函数

二、条件判断函数

三、练习举例

表例

--hive中别名用··来区分

--1.查询学生专业数据;字段:学号,姓名,学院,专业,格式:学号-姓名-学院-专业;

select
concat(stu_id,'-',name,'-',college,'-',major) as 学生信息

from student_info;

--2.问题1返回的数据,把“专业”字段里“专业”二字去掉,其他字段和格式都不变;
--eg:问题1返回:学号xxx-姓名-xxx学院-xxx专业:改成:学号xxx-姓名-xxx学院-xxx

select
concat(stu_id,'-',name,'-',college,'-',replace(major,'专业','')) as 学生信息

from student_info;

--3.查询学生入学的月份;字段:学号,姓名,入学月份(年-月);

select 
    stu_id as 学号,
    name as 姓名,
    substr(entry_date,1,7) as 入学月份

from student_info;

--4.查询学生已经入学多少天了;字段:学号,姓名,入学多少天;

select 
    stu_id as 学号,
    name as 姓名,
    datediff(current_date(),entry_date) as 入学天数

from student_info;

--5.这届学生的入学日期都是2016-09-01,60天后举办运动会,该怎么查询那天日期是多少?

select
    distinct date_add(entry_date,INTERVAL 60 day) as 运动会日期

from student_info;

--6.江苏的高考比较难,希望对这届江苏学生的高考分数*1.1,保留1位小数;字段:学号,姓名,高考分数;
select
    stu_id as 学号,
    name as 姓名,
    round(gk_score*1.1,1) as 高考分数

from student_info;

--7.将学生分班,高考分数小于610,进C班;小于630,进B班,否则进A班;字段:学号,姓名,高考分数,班级(用if);

select
    stu_id as 学号,
    name as 姓名,
    gk_score as 高考分数,
    if(gk_score<610,'C',if(gk_score>=630,'A','B')) as 班级

from student_info;

--8.查询来自安徽省、江苏省的学生,年龄分段情况:(用case when);字段:学号,姓名,年龄段;
--小于等于18岁,返回Y
--大于等于19,小于等于20,返回M

select
    stu_id as 学号
    ,name as 姓名
    ,age as 年龄
    ,case when age between 19 and 20 then 'M'
        when age<=18 then 'Y'
        end as 年龄段

from student_info
where from_where in ('安徽省','江苏省');


--离散值(需要全部枚举出来)举例
select
    stu_id 
    ,name 
    ,case age
        when 18 then 'M'
        when 19 then 'Y'
        when 20 then 'Y'
        else 'other'
        end as stu_age

from student_info
where from_where in ('安徽省','江苏省');
上一篇下一篇

猜你喜欢

热点阅读